Compare commits

...

5 commits

Author SHA1 Message Date
Dessalines
715d8c6548
Merge branch 'main' into add_default_post_listing 2022-05-22 15:47:10 -04:00
Dessalines
d86da1b9f5 v0.17.0-rc.5 2022-05-13 15:51:10 -04:00
Dessalines
8b1af5f3b2 Forgot to add to the Site interface. 2022-05-13 15:51:00 -04:00
Dessalines
a64c6051f3 v0.17.0-rc.4 2022-05-13 15:10:53 -04:00
Dessalines
ba020f7218 Add default_post_listing_type 2022-05-13 15:09:46 -04:00
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;