Adding additional post sorts.
This commit is contained in:
parent
657c851cf3
commit
d39f123d62
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