remove 'User' definition
This commit is contained in:
parent
25b5456a32
commit
923b9448f6
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue