mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-23 03:11:26 +00:00
Adding posting_restricted_to_mods (#48)
This commit is contained in:
parent
8d0fc63474
commit
4e41168488
2 changed files with 3 additions and 0 deletions
|
@ -30,6 +30,7 @@ export interface CreateCommunity {
|
|||
icon?: string;
|
||||
banner?: string;
|
||||
nsfw?: boolean;
|
||||
posting_restricted_to_mods?: boolean;
|
||||
auth: string;
|
||||
}
|
||||
|
||||
|
@ -99,6 +100,7 @@ export interface EditCommunity {
|
|||
icon?: string;
|
||||
banner?: string;
|
||||
nsfw?: boolean;
|
||||
posting_restricted_to_mods?: boolean;
|
||||
auth: string;
|
||||
}
|
||||
|
||||
|
|
|
@ -223,6 +223,7 @@ export interface CommunitySafe {
|
|||
local: boolean;
|
||||
icon?: string;
|
||||
banner?: string;
|
||||
posting_restricted_to_mods: boolean;
|
||||
}
|
||||
|
||||
export interface CommentReport {
|
||||
|
|
Loading…
Reference in a new issue