mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-29 07:41: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;
|
||||
open_registration?: boolean;
|
||||
enable_nsfw?: boolean;
|
||||
community_creation_admin_only?: boolean;
|
||||
auth: string;
|
||||
}
|
||||
|
||||
|
@ -80,6 +81,7 @@ export interface EditSite {
|
|||
enable_downvotes?: boolean;
|
||||
open_registration?: boolean;
|
||||
enable_nsfw?: boolean;
|
||||
community_creation_admin_only?: boolean;
|
||||
auth: string;
|
||||
}
|
||||
|
||||
|
|
|
@ -44,6 +44,7 @@ export interface Site {
|
|||
enable_downvotes: boolean;
|
||||
open_registration: boolean;
|
||||
enable_nsfw: boolean;
|
||||
community_creation_admin_only: boolean;
|
||||
icon?: string;
|
||||
banner?: string;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue