From 991b8118567ee4d92f38a4a1d7cbaec41c4d6229 Mon Sep 17 00:00:00 2001 From: Anatoly Rugalev Date: Fri, 23 Jul 2021 16:00:12 +0200 Subject: [PATCH] [CHAT-1994] Add grants field to AppSettings (#721) --- src/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types.ts b/src/types.ts index 657463bd0..5f66c5c4d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -86,6 +86,7 @@ export type AppSettingsAPIResponse< disable_permissions_checks?: boolean; enforce_unique_usernames?: 'no' | 'app' | 'team'; file_upload_config?: FileUploadConfig; + grants?: Record; image_moderation_enabled?: boolean; image_upload_config?: FileUploadConfig; multi_tenant_enabled?: boolean; @@ -1500,6 +1501,7 @@ export type AppSettings = { notification_template?: string; server_key?: string; }; + grants?: Record; image_moderation_enabled?: boolean; image_upload_config?: FileUploadConfig; multi_tenant_enabled?: boolean;