From ac8eb94a27905a1bcac9fea445b41e5866cf173f Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Wed, 1 Mar 2017 17:37:01 +0900 Subject: Use any instead of Object --- src/api/endpoints/auth/session/show.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/api/endpoints/auth/session/show.js') diff --git a/src/api/endpoints/auth/session/show.js b/src/api/endpoints/auth/session/show.js index e161d9e576..425c980d9d 100644 --- a/src/api/endpoints/auth/session/show.js +++ b/src/api/endpoints/auth/session/show.js @@ -18,11 +18,11 @@ import serialize from '../../../serializers/auth-session'; * in: formData * required: true * type: string - * + * * responses: * 200: * description: OK - * schema: + * schema: * type: object * properties: * created_at: @@ -49,9 +49,9 @@ import serialize from '../../../serializers/auth-session'; /** * Show a session * - * @param {Object} params - * @param {Object} user - * @return {Promise} + * @param {any} params + * @param {any} user + * @return {Promise} */ module.exports = (params, user) => new Promise(async (res, rej) => -- cgit v1.3.1-freya