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 {
|
export interface CreateSite {
|
||||||
name: string;
|
name: string;
|
||||||
|
sidebar?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
icon?: string;
|
icon?: string;
|
||||||
banner?: string;
|
banner?: string;
|
||||||
|
@ -72,6 +73,7 @@ export interface CreateSite {
|
||||||
|
|
||||||
export interface EditSite {
|
export interface EditSite {
|
||||||
name?: string;
|
name?: string;
|
||||||
|
sidebar?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
icon?: string;
|
icon?: string;
|
||||||
banner?: string;
|
banner?: string;
|
||||||
|
|
|
@ -34,6 +34,7 @@ export interface PersonSafe {
|
||||||
export interface Site {
|
export interface Site {
|
||||||
id: number;
|
id: number;
|
||||||
name: string;
|
name: string;
|
||||||
|
sidebar?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
creator_id: number;
|
creator_id: number;
|
||||||
published: string;
|
published: string;
|
||||||
|
|
Loading…
Reference in a new issue