Change long desc to sidebar, add short site description

This commit is contained in:
Dessalines 2021-04-23 17:54:17 -04:00
parent a201586142
commit 1f754e7083
2 changed files with 3 additions and 0 deletions

View file

@ -61,6 +61,7 @@ export interface GetModlogResponse {
export interface CreateSite {
name: string;
sidebar?: string;
description?: string;
icon?: string;
banner?: string;
@ -72,6 +73,7 @@ export interface CreateSite {
export interface EditSite {
name?: string;
sidebar?: string;
description?: string;
icon?: string;
banner?: string;

View file

@ -34,6 +34,7 @@ export interface PersonSafe {
export interface Site {
id: number;
name: string;
sidebar?: string;
description?: string;
creator_id: number;
published: string;