Simpler again.

This commit is contained in:
Dessalines 2022-05-14 20:20:37 -04:00
parent 2e3e8dbf50
commit d9f92a3164
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ export interface GetModlogResponse {
export interface CreateSite {
name: string;
sidebar?: string;
sidebar: Option<string>;
description?: string;
icon?: string;
banner?: string;

View file

@ -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;