mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-01-09 11:41:28 +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;
|
icon?: string;
|
||||||
banner?: string;
|
banner?: string;
|
||||||
nsfw?: boolean;
|
nsfw?: boolean;
|
||||||
|
posting_restricted_to_mods?: boolean;
|
||||||
auth: string;
|
auth: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,6 +100,7 @@ export interface EditCommunity {
|
||||||
icon?: string;
|
icon?: string;
|
||||||
banner?: string;
|
banner?: string;
|
||||||
nsfw?: boolean;
|
nsfw?: boolean;
|
||||||
|
posting_restricted_to_mods?: boolean;
|
||||||
auth: string;
|
auth: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -223,6 +223,7 @@ export interface CommunitySafe {
|
||||||
local: boolean;
|
local: boolean;
|
||||||
icon?: string;
|
icon?: string;
|
||||||
banner?: string;
|
banner?: string;
|
||||||
|
posting_restricted_to_mods: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CommentReport {
|
export interface CommentReport {
|
||||||
|
|
Loading…
Reference in a new issue