mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
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:
parent
a35afab102
commit
4a860ce2c2
3 changed files with 3 additions and 1 deletions
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue