[Swagger]Add /auth/session/show

This commit is contained in:
Tosuke 2017-01-05 19:01:37 +09:00
parent 923b9448f6
commit 41ea59d77c
2 changed files with 41 additions and 2 deletions

View file

@ -6,6 +6,46 @@
import AuthSess from '../../../models/auth-session';
import serialize from '../../../serializers/auth-session';
/**
* @swagger
* /auth/session/show:
* post:
* summary: Show a session information
* parameters:
* -
* name: token
* description: API Token
* in: formData
* required: true
* type: string
*
* responses:
* 200:
* description: OK
* schema:
* type: object
* properties:
* created_at:
* type: string
* format: date
* description: de
* app_id:
* type: string
* description: Application ID
* token:
* type: string
* description: API Token
* user_id:
* type: string
* description: de
* app:
* $ref: "#/definitions/Application"
* 400:
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
/**
* Show a session
*

View file

@ -8,6 +8,7 @@ const apiRoot = './src/api/endpoints';
const files = [
'users.js',
'auth/session/generate.js',
'auth/session/show.js',
'auth/session/userkey.js',
];
@ -194,5 +195,3 @@ var swaggerSpec = swaggerJSDoc(options);
fs.writeFileSync('api-docs.json', JSON.stringify(swaggerSpec));
console.log(JSON.stringify(swaggerSpec));