Skip to content

Commit e38e8c7

Browse files
committed
Merge pull request grafana#3723 from schen59/master-schen
fix mismatch api path introduced by commit to issue grafana#3600
2 parents 8ff48c1 + 4ceab4a commit e38e8c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/api/org.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func GetOrgById(c *middleware.Context) Response {
2020
return getOrgHelper(c.ParamsInt64(":orgId"))
2121
}
2222

23-
// Get /api/orgs/:name
23+
// Get /api/orgs/name/:name
2424
func GetOrgByName(c *middleware.Context) Response {
2525
query := m.GetOrgByNameQuery{Name: c.Params(":name")}
2626
if err := bus.Dispatch(&query); err != nil {

0 commit comments

Comments
 (0)