Skip to content

Commit

Permalink
Add default_post_listing_type (#53)
Browse files Browse the repository at this point in the history
* Add default_post_listing_type

* v0.17.0-rc.4

* Forgot to add to the Site interface.

* v0.17.0-rc.5
  • Loading branch information
dessalines authored May 22, 2022
1 parent 357bf2f commit 44e5c91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/interfaces/api/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export interface CreateSite {
application_question?: string;
private_instance?: boolean;
default_theme?: string;
default_post_listing_type?: string;
auth: string;
}

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

Expand Down
1 change: 1 addition & 0 deletions src/interfaces/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 44e5c91

Please sign in to comment.