added error checking for name collision on frontend and send corresponding error

This commit is contained in:
Cam Otts
2023-02-01 13:13:15 -06:00
parent cd28970f13
commit 9aba5f3524
7 changed files with 121 additions and 1 deletions

View File

@ -265,6 +265,9 @@ func init() {
"$ref": "#/definitions/createFrontendResponse"
}
},
"400": {
"description": "bad request"
},
"401": {
"description": "unauthorized"
},
@ -1537,6 +1540,9 @@ func init() {
"$ref": "#/definitions/createFrontendResponse"
}
},
"400": {
"description": "bad request"
},
"401": {
"description": "unauthorized"
},