mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Add open links in new tab. (#160)
This commit is contained in:
parent
d497a1efea
commit
8fa91b55bb
4 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,8 @@ export interface Community {
|
|||
local: boolean;
|
||||
icon?: string;
|
||||
banner?: string;
|
||||
followers_url: string;
|
||||
inbox_url: string;
|
||||
hidden: boolean;
|
||||
posting_restricted_to_mods: boolean;
|
||||
instance_id: InstanceId;
|
||||
|
|
|
@ -23,4 +23,5 @@ export interface LocalUser {
|
|||
email_verified: boolean;
|
||||
accepted_application: boolean;
|
||||
totp_2fa_url?: string;
|
||||
open_links_in_new_tab: boolean;
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@ export interface Person {
|
|||
local: boolean;
|
||||
banner?: string;
|
||||
deleted: boolean;
|
||||
inbox_url: string;
|
||||
matrix_user_id?: string;
|
||||
admin: boolean;
|
||||
bot_account: boolean;
|
||||
|
|
|
@ -25,4 +25,5 @@ export interface SaveUserSettings {
|
|||
discussion_languages?: Array<LanguageId>;
|
||||
generate_totp_2fa?: boolean;
|
||||
auth: string;
|
||||
open_links_in_new_tab?: boolean;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue