@@ -87,13 +87,16 @@ describe("OIDC client configuration", () => {
8787 enforced : true ,
8888 providerName : "Test OIDC" ,
8989 issuerUrl : "https://issuer.example" ,
90+ discoveryUrl : null ,
9091 clientId : "client-id" ,
9192 clientSecret : "client-secret" ,
9293 redirectUri : "https://app.example/api/auth/oidc/callback" ,
9394 idTokenSignedResponseAlg : "HS256" ,
9495 scopes : "openid email profile" ,
9596 emailClaim : "email" ,
9697 emailVerifiedClaim : "email_verified" ,
98+ groupsClaim : "groups" ,
99+ adminGroups : [ ] ,
97100 requireEmailVerified : true ,
98101 jitProvisioning : true ,
99102 firstUserAdmin : true ,
@@ -149,13 +152,16 @@ describe("OIDC client configuration", () => {
149152 enforced : true ,
150153 providerName : "Test OIDC" ,
151154 issuerUrl : "https://issuer.example" ,
155+ discoveryUrl : null ,
152156 clientId : "client-id" ,
153157 clientSecret : "client-secret" ,
154158 redirectUri : "https://app.example/api/auth/oidc/callback" ,
155159 idTokenSignedResponseAlg : null ,
156160 scopes : "openid email profile" ,
157161 emailClaim : "email" ,
158162 emailVerifiedClaim : "email_verified" ,
163+ groupsClaim : "groups" ,
164+ adminGroups : [ ] ,
159165 requireEmailVerified : true ,
160166 jitProvisioning : true ,
161167 firstUserAdmin : true ,
0 commit comments