mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 21:31:36 +02:00
Merge pull request #27834 from overleaf/ii-domain-capture-not-in-group-redirect
[web] Redirect to domain capture page GitOrigin-RevId: 15d2b8046beb5a40fc4937c337ee9655abaed8fd
This commit is contained in:
@@ -112,6 +112,29 @@ async function projectListPage(req, res, next) {
|
||||
const isSaas = Features.hasFeature('saas')
|
||||
|
||||
const userId = SessionManager.getLoggedInUserId(req.session)
|
||||
|
||||
if (isSaas) {
|
||||
const { variant: domainCaptureRedirect } =
|
||||
await SplitTestHandler.promises.getAssignment(
|
||||
req,
|
||||
res,
|
||||
'domain-capture-redirect'
|
||||
)
|
||||
|
||||
if (domainCaptureRedirect === 'enabled') {
|
||||
const subscription = (
|
||||
await Modules.promises.hooks.fire(
|
||||
'findDomainCaptureAndManagedUsersGroupUserShouldBePartOf',
|
||||
userId
|
||||
)
|
||||
)?.[0]
|
||||
|
||||
if (subscription) {
|
||||
return res.redirect('/domain-capture')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const projectsBlobPending = _getProjects(userId).catch(err => {
|
||||
logger.err({ err, userId }, 'projects listing in background failed')
|
||||
return undefined
|
||||
|
||||
Reference in New Issue
Block a user