mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-26 06:11:14 +00:00
Simpler again.
This commit is contained in:
parent
2e3e8dbf50
commit
d9f92a3164
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ export interface GetModlogResponse {
|
|||
|
||||
export interface CreateSite {
|
||||
name: string;
|
||||
sidebar?: string;
|
||||
sidebar: Option<string>;
|
||||
description?: string;
|
||||
icon?: string;
|
||||
banner?: string;
|
||||
|
|
|
@ -50,7 +50,7 @@ export interface Site {
|
|||
open_registration: boolean;
|
||||
enable_nsfw: boolean;
|
||||
icon?: string;
|
||||
banner: Option<string>;
|
||||
banner?: string;
|
||||
description?: string;
|
||||
community_creation_admin_only: boolean;
|
||||
require_email_verification: boolean;
|
||||
|
|
Loading…
Reference in a new issue