gristlabs_grist-core/app/client/ui/DefaultActivationPage.ts
Spoffy b98bad0b93 (core) Makes EE frontend behave as core if EE isn't activated
Summary:
- Makes EE decide which ActivationPage to use
- Makes ProductUpgrades use core implementation if not activated
- Changes banners to proxy to core implementation if EE not activated
- [Fix] Enables new site creation in EE as in Core:
    - Core enables people to freely create new team sites.
    - Enterprise currently redirects to the pricing page.
    - This enables enterprise to also create team sites, instead of
    redirecting.

Test Plan: Manually test in EE, unit tests in Jenkins

Reviewers: paulfitz, jordigh

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D4264
2024-06-14 00:43:51 +01:00

19 lines
485 B
TypeScript

import {AppModel} from 'app/client/models/AppModel';
import { Disposable, IDomCreator } from 'grainjs';
export type IActivationPageCreator = IDomCreator<[AppModel]>
/**
* A blank ActivationPage stand-in, as it's possible for the frontend to try and load an "activation page",
* even though there's no activation in core.
*/
export class DefaultActivationPage extends Disposable {
constructor(_appModel: AppModel) {
super();
}
public buildDom() {
return null;
}
}