Feature/show post notifs (#24)

* Show new post notifs to SaveUserSettings

* v0.11.3-rc.1

* Forgot to add to localusersettings

* v0.11.3-rc.2
This commit is contained in:
Dessalines 2021-07-22 16:29:56 -04:00 committed by GitHub
parent a35afab102
commit 4a860ce2c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
"version": "0.11.0",
"version": "0.11.3-rc.2",
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"main": "./dist/index.js",

View file

@ -56,6 +56,7 @@ export interface SaveUserSettings {
bot_account?: boolean;
show_bot_accounts?: boolean;
show_read_posts?: boolean;
show_new_post_notifs?: boolean;
auth: string;
}

View file

@ -12,6 +12,7 @@ export interface LocalUserSettings {
show_bot_accounts: boolean;
show_scores: boolean;
show_read_posts: boolean;
show_new_post_notifs: boolean;
}
export interface PersonSafe {