Merge pull request #15223 from overleaf/ab-sso-multiple-certificates-ui

[web] Support multiple certificates in group SSO settings

GitOrigin-RevId: 5f014eb82b7e0820040941fdd2bded8d33958316
This commit is contained in:
Alexandre Bourdin
2023-10-30 09:04:38 +00:00
committed by Copybot
parent c39a566fe3
commit c71301ac9a
6 changed files with 50 additions and 9 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ const { Schema } = mongoose
const SSOConfigSchema = new Schema(
{
entryPoint: { type: String, required: true },
certificate: { type: String, required: true },
certificates: { type: Array, default: [''], required: true },
signatureAlgorithm: { type: String, required: true },
userIdAttribute: { type: String, required: true },
userFirstNameAttribute: { type: String },