changes for blur_nsfw/auto_expand (#162)

Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
This commit is contained in:
Domenic Horner 2023-07-12 20:55:29 +08:00 committed by GitHub
parent b010b2f9b4
commit 0c1483f9fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -9,6 +9,8 @@ export interface LocalUser {
person_id: PersonId;
email?: string;
show_nsfw: boolean;
blur_nsfw: boolean;
auto_expand: boolean;
theme: string;
default_sort_type: SortType;
default_listing_type: ListingType;

View file

@ -5,6 +5,8 @@ import type { SortType } from "./SortType";
export interface SaveUserSettings {
show_nsfw?: boolean;
blur_nsfw?: boolean;
auto_expand?: boolean;
show_scores?: boolean;
theme?: string;
default_sort_type?: SortType;