mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 02:35:17 +01:00
Merge pull request #16605 from chlins/fix/project-creation-validation
fix: return BAD_REQUEST when validate project metadata
This commit is contained in:
commit
374ec5793e
@ -150,7 +150,7 @@ func (a *projectAPI) CreateProject(ctx context.Context, params operation.CreateP
|
||||
// validate metadata.public value, should only be "true" or "false"
|
||||
if p := req.Metadata.Public; p != "" {
|
||||
if p != "true" && p != "false" {
|
||||
return a.SendError(ctx, errors.Errorf("metadata.public should only be 'true' or 'false', but got: '%s'", p))
|
||||
return a.SendError(ctx, errors.BadRequestError(nil).WithMessage(fmt.Sprintf("metadata.public should only be 'true' or 'false', but got: '%s'", p)))
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user