mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Update 'affiliations' feature flag to support Server Pro (#2127)
GitOrigin-RevId: 93633994e052badf73b48e5b10971ea6257503ac
This commit is contained in:
parent
294ce1a13c
commit
08f8bbce9b
1 changed files with 4 additions and 1 deletions
|
@ -43,7 +43,10 @@ module.exports = Features = {
|
||||||
case 'view-templates':
|
case 'view-templates':
|
||||||
return Settings.overleaf == null
|
return Settings.overleaf == null
|
||||||
case 'affiliations':
|
case 'affiliations':
|
||||||
return Settings.apis.v1 != null
|
// Checking both properties is needed for the time being to allow
|
||||||
|
// enabling the feature in web-api and disabling in Server Pro
|
||||||
|
// see https://github.com/overleaf/web-internal/pull/2127
|
||||||
|
return Settings.apis.v1 && !!Settings.apis.v1.url
|
||||||
case 'redirect-sl':
|
case 'redirect-sl':
|
||||||
return Settings.redirectToV2 != null
|
return Settings.redirectToV2 != null
|
||||||
case 'overleaf-integration':
|
case 'overleaf-integration':
|
||||||
|
|
Loading…
Reference in a new issue