mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-29 15:51:12 +00:00
Add admin community_creation_admin_only.
This commit is contained in:
parent
54f94ee953
commit
a738c82063
2 changed files with 3 additions and 0 deletions
|
@ -68,6 +68,7 @@ export interface CreateSite {
|
||||||
enable_downvotes?: boolean;
|
enable_downvotes?: boolean;
|
||||||
open_registration?: boolean;
|
open_registration?: boolean;
|
||||||
enable_nsfw?: boolean;
|
enable_nsfw?: boolean;
|
||||||
|
community_creation_admin_only?: boolean;
|
||||||
auth: string;
|
auth: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,6 +81,7 @@ export interface EditSite {
|
||||||
enable_downvotes?: boolean;
|
enable_downvotes?: boolean;
|
||||||
open_registration?: boolean;
|
open_registration?: boolean;
|
||||||
enable_nsfw?: boolean;
|
enable_nsfw?: boolean;
|
||||||
|
community_creation_admin_only?: boolean;
|
||||||
auth: string;
|
auth: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,7 @@ export interface Site {
|
||||||
enable_downvotes: boolean;
|
enable_downvotes: boolean;
|
||||||
open_registration: boolean;
|
open_registration: boolean;
|
||||||
enable_nsfw: boolean;
|
enable_nsfw: boolean;
|
||||||
|
community_creation_admin_only: boolean;
|
||||||
icon?: string;
|
icon?: string;
|
||||||
banner?: string;
|
banner?: string;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue