File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ export interface GetSiteResponse {
100100 online : number ;
101101 version : string ;
102102 my_user ?: UserSafeSettings ; // Gives back your user and settings if logged in
103- federated_instances : string [ ] ;
103+ federated_instances ?: FederatedInstances ;
104104}
105105
106106export interface TransferSite {
@@ -120,3 +120,9 @@ export interface SaveSiteConfig {
120120 config_hjson : string ;
121121 auth : string ;
122122}
123+
124+ export interface FederatedInstances {
125+ linked : string [ ] ;
126+ allowed : string [ ] ;
127+ blocked : string [ ] ;
128+ }
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ export enum SortType {
7373 TopMonth = 'TopMonth' ,
7474 TopYear = 'TopYear' ,
7575 TopAll = 'TopAll' ,
76+ MostComments = 'MostComments' ,
7677}
7778
7879export enum ListingType {
You can’t perform that action at this time.
0 commit comments