mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Adding bot accounts
This commit is contained in:
parent
9d501e825b
commit
669b1eb531
2 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue