Compare commits
5 commits
main
...
add_defaul
Author | SHA1 | Date | |
---|---|---|---|
|
715d8c6548 | ||
|
d86da1b9f5 | ||
|
8b1af5f3b2 | ||
|
a64c6051f3 | ||
|
ba020f7218 |
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