forked from FoundKeyGang/FoundKey
[Swagger]Add /app/name_id/available
This commit is contained in:
parent
b2dad3a9c2
commit
66d6f4420e
2 changed files with 30 additions and 0 deletions
|
@ -5,6 +5,35 @@
|
|||
*/
|
||||
import App from '../../../models/app';
|
||||
|
||||
/**
|
||||
* @swagger
|
||||
* /app/name_id/available:
|
||||
* post:
|
||||
* summary: Check available name_id on creation an application
|
||||
* parameters:
|
||||
* -
|
||||
* name: name_id
|
||||
* description: Application unique name
|
||||
* in: formData
|
||||
* required: true
|
||||
* type: string
|
||||
*
|
||||
* responses:
|
||||
* 200:
|
||||
* description: Success
|
||||
* schema:
|
||||
* type: object
|
||||
* properties:
|
||||
* available:
|
||||
* description: Whether name_id is available
|
||||
* type: boolean
|
||||
*
|
||||
* default:
|
||||
* description: Failed
|
||||
* schema:
|
||||
* $ref: "#/definitions/Error"
|
||||
*/
|
||||
|
||||
/**
|
||||
* Check available name_id of app
|
||||
*
|
||||
|
|
|
@ -9,6 +9,7 @@ const files = [
|
|||
'users.js',
|
||||
//app
|
||||
'app/show.js',
|
||||
'app/name_id/available.js',
|
||||
//auth
|
||||
'auth/accept.js',
|
||||
//auth/session
|
||||
|
|
Loading…
Reference in a new issue