Skip to content

Commit

Permalink
[CHAT-1994] Add grants field to AppSettings (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anatoly Rugalev committed Jul 23, 2021
1 parent 7f654f2 commit 991b811
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export type AppSettingsAPIResponse<
disable_permissions_checks?: boolean;
enforce_unique_usernames?: 'no' | 'app' | 'team';
file_upload_config?: FileUploadConfig;
grants?: Record<string, string[]>;
image_moderation_enabled?: boolean;
image_upload_config?: FileUploadConfig;
multi_tenant_enabled?: boolean;
Expand Down Expand Up @@ -1500,6 +1501,7 @@ export type AppSettings = {
notification_template?: string;
server_key?: string;
};
grants?: Record<string, string[]>;
image_moderation_enabled?: boolean;
image_upload_config?: FileUploadConfig;
multi_tenant_enabled?: boolean;
Expand Down

0 comments on commit 991b811

Please sign in to comment.