mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-23 11:21:27 +00:00
Add default_post_listing_type (#53)
* Add default_post_listing_type * v0.17.0-rc.4 * Forgot to add to the Site interface. * v0.17.0-rc.5
This commit is contained in:
parent
357bf2f011
commit
44e5c91042
2 changed files with 3 additions and 0 deletions
|
@ -89,6 +89,7 @@ export interface CreateSite {
|
||||||
application_question?: string;
|
application_question?: string;
|
||||||
private_instance?: boolean;
|
private_instance?: boolean;
|
||||||
default_theme?: string;
|
default_theme?: string;
|
||||||
|
default_post_listing_type?: string;
|
||||||
auth: string;
|
auth: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,6 +108,7 @@ export interface EditSite {
|
||||||
application_question?: string;
|
application_question?: string;
|
||||||
private_instance?: boolean;
|
private_instance?: boolean;
|
||||||
default_theme?: string;
|
default_theme?: string;
|
||||||
|
default_post_listing_type?: string;
|
||||||
auth: string;
|
auth: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,7 @@ export interface Site {
|
||||||
application_question?: string;
|
application_question?: string;
|
||||||
private_instance: boolean;
|
private_instance: boolean;
|
||||||
default_theme: string;
|
default_theme: string;
|
||||||
|
default_post_listing_type: string;
|
||||||
actor_id: string;
|
actor_id: string;
|
||||||
last_refreshed_at: string;
|
last_refreshed_at: string;
|
||||||
inbox_url: string;
|
inbox_url: string;
|
||||||
|
|
Loading…
Reference in a new issue