diff --git a/src/api/endpoints/app/name_id/available.js b/src/api/endpoints/app/name_id/available.js index 179925dce..e101e0637 100644 --- a/src/api/endpoints/app/name_id/available.js +++ b/src/api/endpoints/app/name_id/available.js @@ -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 * diff --git a/swagger.js b/swagger.js index a4122350f..9391e80c5 100644 --- a/swagger.js +++ b/swagger.js @@ -9,6 +9,7 @@ const files = [ 'users.js', //app 'app/show.js', + 'app/name_id/available.js', //auth 'auth/accept.js', //auth/session