Merge branch '16439-objects-creation-placement-fix-tests'
authorLucas Di Pentima <lucas@di-pentima.com.ar>
Wed, 10 Jun 2020 19:55:27 +0000 (16:55 -0300)
committerLucas Di Pentima <lucas@di-pentima.com.ar>
Wed, 10 Jun 2020 19:55:27 +0000 (16:55 -0300)
Closes #16439

Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas@di-pentima.com.ar>

src/common/config.ts

index 361ca24ecf471c1fe5bf553bbdb03ea04c7210fd..39f9fbd13d37e0e59554008bfa2549e3149a3e31 100644 (file)
@@ -64,6 +64,9 @@ export interface ClusterConfigJSON {
         LDAP: {
             Enable: boolean;
         }
+        OpenIDConnect: {
+            Enable: boolean;
+        }
         PAM: {
             Enable: boolean;
         }
@@ -216,6 +219,9 @@ export const mockClusterConfigJSON = (config: Partial<ClusterConfigJSON>): Clust
         LDAP: {
             Enable: false,
         },
+        OpenIDConnect: {
+            Enable: false,
+        },
         PAM: {
             Enable: false,
         },