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:
Dessalines 2022-05-22 15:47:15 -04:00 committed by GitHub
parent 357bf2f011
commit 44e5c91042
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -89,6 +89,7 @@ export interface CreateSite {
application_question?: string;
private_instance?: boolean;
default_theme?: string;
default_post_listing_type?: string;
auth: string;
}
@ -107,6 +108,7 @@ export interface EditSite {
application_question?: string;
private_instance?: boolean;
default_theme?: string;
default_post_listing_type?: string;
auth: string;
}

View file

@ -56,6 +56,7 @@ export interface Site {
application_question?: string;
private_instance: boolean;
default_theme: string;
default_post_listing_type: string;
actor_id: string;
last_refreshed_at: string;
inbox_url: string;