Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openapi3: empty scopes are valid #754

Merged
merged 1 commit into from
Jan 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions openapi3/security_scheme.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ func (flow *OAuthFlow) Validate(ctx context.Context, opts ...ValidationOption) e
}
}

if v := flow.Scopes; len(v) == 0 {
return errors.New("field 'scopes' is empty or missing")
if flow.Scopes == nil {
return errors.New("field 'scopes' is missing")
}

return validateExtensions(ctx, flow.Extensions)
Expand Down
2 changes: 1 addition & 1 deletion openapi3/security_scheme_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ var securitySchemeExamples = []securitySchemeExample{
}
}
}`),
valid: false,
valid: true,
},

{
Expand Down