Merge pull request #156 from LemmyNet/add_show_nsfw_sort

Add show_nsfw community sort.
This commit is contained in:
SleeplessOne1917 2023-06-29 18:12:54 -04:00 committed by GitHub
commit 0a9c151b8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@ import type { SortType } from "./SortType";
export interface ListCommunities { export interface ListCommunities {
type_?: ListingType; type_?: ListingType;
sort?: SortType; sort?: SortType;
show_nsfw?: boolean;
page?: number; page?: number;
limit?: number; limit?: number;
auth?: string; auth?: string;