mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-25 13:51:12 +00:00
Changing default_sort and listing back to numbers.
This commit is contained in:
parent
ed46e72925
commit
66fdef9f1d
2 changed files with 4 additions and 4 deletions
|
@ -40,8 +40,8 @@ export interface CaptchaResponse {
|
|||
export interface SaveUserSettings {
|
||||
show_nsfw: boolean;
|
||||
theme: string;
|
||||
default_sort_type: string;
|
||||
default_listing_type: string;
|
||||
default_sort_type: number;
|
||||
default_listing_type: number;
|
||||
lang: string;
|
||||
avatar?: string;
|
||||
banner?: string;
|
||||
|
|
|
@ -30,8 +30,8 @@ export interface User_ {
|
|||
updated?: string;
|
||||
show_nsfw: boolean;
|
||||
theme: string;
|
||||
default_sort_type: SortType;
|
||||
default_listing_type: ListingType;
|
||||
default_sort_type: number;
|
||||
default_listing_type: number;
|
||||
lang: string;
|
||||
show_avatars: boolean;
|
||||
send_notifications_to_email: boolean;
|
||||
|
|
Loading…
Reference in a new issue