Merge pull request #172 from biosfood/main

change moderator view to be a listing type
This commit is contained in:
SleeplessOne1917 2023-08-02 00:37:49 +00:00 committed by GitHub
commit f165ef6538
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -11,6 +11,5 @@ export interface GetPosts {
community_id?: CommunityId; community_id?: CommunityId;
community_name?: string; community_name?: string;
saved_only?: boolean; saved_only?: boolean;
moderator_view?: boolean;
auth?: string; auth?: string;
} }

View file

@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type ListingType = "All" | "Local" | "Subscribed"; export type ListingType = "All" | "Local" | "Subscribed" | "Moderator View";