16314: Fix syntax.
[arvados-workbench2.git] / src / common / config.ts
index 361ca24ecf471c1fe5bf553bbdb03ea04c7210fd..dd812c65bb488cce168fa6a178b4529a0cc58206 100644 (file)
@@ -23,6 +23,9 @@ export interface ClusterConfigJSON {
             Scheme: string
         }
     };
+    Mail?: {
+        SupportEmailAddress: string;
+    };
     Services: {
         Controller: {
             ExternalURL: string
@@ -64,12 +67,18 @@ export interface ClusterConfigJSON {
         LDAP: {
             Enable: boolean;
         }
+        OpenIDConnect: {
+            Enable: boolean;
+        }
         PAM: {
             Enable: boolean;
         }
         SSO: {
             Enable: boolean;
         }
+        Test: {
+            Enable: boolean;
+        }
     };
     Collections: {
         ForwardSlashNameSubstitution: string;
@@ -216,12 +225,18 @@ export const mockClusterConfigJSON = (config: Partial<ClusterConfigJSON>): Clust
         LDAP: {
             Enable: false,
         },
+        OpenIDConnect: {
+            Enable: false,
+        },
         PAM: {
             Enable: false,
         },
         SSO: {
             Enable: false,
         },
+        Test: {
+            Enable: false,
+        },
     },
     Collections: {
         ForwardSlashNameSubstitution: "",