mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Adding additional post sorts. (#153)
This commit is contained in:
parent
657c851cf3
commit
ef5609dec9
4 changed files with 4 additions and 4 deletions
|
@ -37,7 +37,6 @@ export interface CreateSite {
|
|||
rate_limit_search_per_second?: number;
|
||||
federation_enabled?: boolean;
|
||||
federation_debug?: boolean;
|
||||
federation_worker_count?: number;
|
||||
captcha_enabled?: boolean;
|
||||
captcha_difficulty?: string;
|
||||
allowed_instances?: Array<string>;
|
||||
|
|
|
@ -37,7 +37,6 @@ export interface EditSite {
|
|||
rate_limit_search_per_second?: number;
|
||||
federation_enabled?: boolean;
|
||||
federation_debug?: boolean;
|
||||
federation_worker_count?: number;
|
||||
captcha_enabled?: boolean;
|
||||
captcha_difficulty?: string;
|
||||
allowed_instances?: Array<string>;
|
||||
|
|
|
@ -22,7 +22,6 @@ export interface LocalSite {
|
|||
slur_filter_regex?: string;
|
||||
actor_name_max_length: number;
|
||||
federation_enabled: boolean;
|
||||
federation_worker_count: number;
|
||||
captcha_enabled: boolean;
|
||||
captcha_difficulty: string;
|
||||
published: string;
|
||||
|
|
|
@ -14,4 +14,7 @@ export type SortType =
|
|||
| "NewComments"
|
||||
| "TopHour"
|
||||
| "TopSixHour"
|
||||
| "TopTwelveHour";
|
||||
| "TopTwelveHour"
|
||||
| "TopThreeMonths"
|
||||
| "TopSixMonths"
|
||||
| "TopNineMonths";
|
||||
|
|
Loading…
Reference in a new issue