mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Feature/mark post as read (#21)
* Show / hide read posts * v0.11.0-rc.13
This commit is contained in:
parent
040dd38e13
commit
3778e7fc87
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-rc.12",
|
||||
"version": "0.11.0-rc.13",
|
||||
"author": "Dessalines <tyhou13@gmx.com>",
|
||||
"license": "AGPL-3.0",
|
||||
"main": "./dist/index.js",
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue