[Swagger]Add /app/show

This commit is contained in:
Tosuke 2017-01-06 16:16:53 +09:00
parent 55f8cb4274
commit ac0824b574
2 changed files with 41 additions and 6 deletions

View file

@ -7,6 +7,36 @@ import * as mongo from 'mongodb';
import App from '../../models/app';
import serialize from '../../serializers/app';
/**
* @swagger
* /app/show:
* post:
* summary: Show an application's information
* description: Require app_id or name_id
* parameters:
* -
* name: app_id
* description: Application ID
* in: formData
* type: string
* -
* name: name_id
* description: Application unique name
* in: formData
* type: string
*
* responses:
* 200:
* description: Success
* schema:
* $ref: "#/definitions/Application"
*
* default:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
/**
* Show an app
*