[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
*