diff options
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/user.ts | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/models/user.ts b/src/models/user.ts index e0ce561421..6ca09ca168 100644 --- a/src/models/user.ts +++ b/src/models/user.ts @@ -66,6 +66,16 @@ type IUserBase = { isLocked: boolean; /** + * Botか否か + */ + isBot: boolean; + + /** + * Botからのフォローを承認制にするか + */ + carefulBot: boolean; + + /** * このアカウントに届いているフォローリクエストの数 */ pendingReceivedFollowRequestsCount: number; @@ -94,7 +104,6 @@ export interface ILocalUser extends IUserBase { tags: string[]; }; lastUsedAt: Date; - isBot: boolean; isCat: boolean; isAdmin?: boolean; isVerified?: boolean; |