Add taglines to site response.

This commit is contained in:
Dessalines 2023-06-06 09:06:58 -04:00
parent 0a0acce81c
commit 22b0777f51
3 changed files with 2 additions and 2 deletions

View file

@ -252,4 +252,3 @@ export {
UploadImageResponse,
UserOperation,
} from "./types/others";
export * from "./websocket";

View file

@ -10,5 +10,4 @@ export interface GetCommunityResponse {
moderators: Array<CommunityModeratorView>;
online: number;
discussion_languages: Array<LanguageId>;
default_post_language?: LanguageId;
}

View file

@ -1,6 +1,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { SiteView } from "./SiteView";
import type { Tagline } from "./Tagline";
export interface SiteResponse {
site_view: SiteView;
taglines: Array<Tagline>;
}