mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix status code 200 (#47818)
This commit is contained in:
@@ -56,7 +56,7 @@ func (hs *HTTPServer) GetDashboardPermissionList(c *models.ReqContext) response.
|
||||
filteredAcls = append(filteredAcls, perm)
|
||||
}
|
||||
|
||||
return response.JSON(200, filteredAcls)
|
||||
return response.JSON(http.StatusOK, filteredAcls)
|
||||
}
|
||||
|
||||
func (hs *HTTPServer) UpdateDashboardPermissions(c *models.ReqContext) response.Response {
|
||||
|
||||
Reference in New Issue
Block a user