fix permission check on api create org (#5523)

This commit is contained in:
Lunny Xiao 2018-12-12 03:33:24 +08:00 committed by techknowlogick
parent ba75319157
commit 58c4559d3b
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ func Create(ctx *context.APIContext, form api.CreateOrgOption) {
// "422":
// "$ref": "#/responses/validationError"
if !ctx.User.AllowCreateOrganization {
if !ctx.User.CanCreateOrganization() {
ctx.Error(403, "Create organization not allowed", nil)
return
}