mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Change long desc to sidebar, add short site description
This commit is contained in:
parent
a201586142
commit
1f754e7083
2 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -34,6 +34,7 @@ export interface PersonSafe {
|
|||
export interface Site {
|
||||
id: number;
|
||||
name: string;
|
||||
sidebar?: string;
|
||||
description?: string;
|
||||
creator_id: number;
|
||||
published: string;
|
||||
|
|
Loading…
Reference in a new issue