Adding bot accounts

This commit is contained in:
Dessalines 2021-04-23 19:45:00 -04:00
parent 9d501e825b
commit 669b1eb531
2 changed files with 4 additions and 0 deletions

View file

@ -53,6 +53,8 @@ export interface SaveUserSettings {
show_avatars?: boolean; show_avatars?: boolean;
show_scores?: boolean; show_scores?: boolean;
send_notifications_to_email?: boolean; send_notifications_to_email?: boolean;
bot_account?: boolean;
show_bot_accounts?: boolean;
auth: string; auth: string;
} }

View file

@ -9,6 +9,7 @@ export interface LocalUserSettings {
lang: string; lang: string;
show_avatars: boolean; show_avatars: boolean;
send_notifications_to_email: boolean; send_notifications_to_email: boolean;
show_bot_accounts: boolean;
show_scores: boolean; show_scores: boolean;
} }
@ -29,6 +30,7 @@ export interface PersonSafe {
shared_inbox_url: string; shared_inbox_url: string;
matrix_user_id?: string; matrix_user_id?: string;
admin: boolean; admin: boolean;
bot_account: boolean;
} }
export interface Site { export interface Site {