Feature/mark post as read (#21)

* Show / hide read posts

* v0.11.0-rc.13
This commit is contained in:
Dessalines 2021-04-26 14:58:47 -04:00 committed by GitHub
parent 040dd38e13
commit 3778e7fc87
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-rc.12",
"version": "0.11.0-rc.13",
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"main": "./dist/index.js",

View file

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

View file

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