From 923b9448f680325d36f1ea6b283495f308bcb460 Mon Sep 17 00:00:00 2001 From: Tosuke Date: Thu, 5 Jan 2017 18:52:55 +0900 Subject: [PATCH] remove 'User' definition --- src/api/endpoints/users.js | 76 -------------------------------------- 1 file changed, 76 deletions(-) diff --git a/src/api/endpoints/users.js b/src/api/endpoints/users.js index bb47b4b64..cd40cdf4e 100644 --- a/src/api/endpoints/users.js +++ b/src/api/endpoints/users.js @@ -6,82 +6,6 @@ import User from '../models/user'; import serialize from '../serializers/user'; -/** - * @swagger - * definitions: - * User: - * type: object - * required: - * - created_at - * - followers_count - * - following_count - * - id - * - liked_count - * - likes_count - * - name - * - posts_count - * - username - * properties: - * avatar_id: - * type: string - * description: アバターに設定しているドライブのファイルのID - * avatar_url: - * type: string - * description: アバターURL - * banner_id: - * type: string - * description: バナーに設定しているドライブのファイルのID - * banner_url: - * type: string - * description: バナーURL - * bio: - * type: string - * description: プロフィール - * birthday: - * type: string - * description: 誕生日 - * created_at: - * type: string - * format: date - * description: アカウント作成日時 - * drive_capacity: - * type: integer - * description: ドライブの最大容量 - * followers_count: - * type: integer - * description: フォロワー数 - * following_count: - * type: integer - * description: フォロー数 - * id: - * type: string - * description: ユーザーID - * is_followed: - * type: boolean - * description: フォローされているか - * is_following: - * type: boolean - * description: フォローしているか - * liked_count: - * type: integer - * description: 投稿にいいねされた数 - * likes_count: - * type: integer - * description: 投稿にいいねした数 - * location: - * type: string - * description: 場所 - * name: - * type: string - * description: ニックネーム - * posts_count: - * type: integer - * description: 投稿数 - * username: - * type: string - * description: ユーザー名 - */ - /** * Lists all users *