diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-01 01:12:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-01 01:12:02 +0900 |
| commit | bae44b47086d8a0f0c8f96254b9453a29490a508 (patch) | |
| tree | 09524e23dab78eee6668d4c3a3056ac8063aa4a8 /src/models/user.ts | |
| parent | wip (diff) | |
| download | sharkey-bae44b47086d8a0f0c8f96254b9453a29490a508.tar.gz sharkey-bae44b47086d8a0f0c8f96254b9453a29490a508.tar.bz2 sharkey-bae44b47086d8a0f0c8f96254b9453a29490a508.zip | |
wip
Diffstat (limited to 'src/models/user.ts')
| -rw-r--r-- | src/models/user.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/models/user.ts b/src/models/user.ts index 4186241a59..0e06512dae 100644 --- a/src/models/user.ts +++ b/src/models/user.ts @@ -62,6 +62,11 @@ type IUserBase = { */ isLocked: boolean; + /** + * このアカウントに届いているフォローリクエストの数 + */ + pendingReceivedFollowRequestsCount: number; + host: string; }; |