Merge pull request #29881 from overleaf/jel-domain-capture-email-invite-cta

[web] Update CTA for domain capture group invites

GitOrigin-RevId: addaa81c443da63124b7841f087e34145fe3bfe6
This commit is contained in:
Jessica Lawshe
2025-12-05 09:06:02 +00:00
committed by Copybot
parent 8971d05384
commit 2e3ddb0965
5 changed files with 210 additions and 24 deletions
+2 -1
View File
@@ -6,8 +6,9 @@ export const TeamInviteSchema = new Schema(
{
email: { type: String, required: true },
token: { type: String },
inviterName: { type: String },
inviterName: { type: String, optional: true },
sentAt: { type: Date },
domainCapture: { type: Boolean, default: false, optional: true },
},
{ minimize: false }
)