mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
e4d47a2f3c
Summary: For grist-ee, expect an activation key in environment variable `GRIST_ACTIVATION` or in a file pointed to by `GRIST_ACTIVATION_FILE`. In absence of key, start a 30-day trial, during which a banner is shown. Once trial expires, installation goes into document-read-only mode. Test Plan: added a test Reviewers: dsagal Reviewed By: dsagal Subscribers: jarek Differential Revision: https://phab.getgrist.com/D3426
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import * as express from 'express';
|
|
|
|
export interface IBilling {
|
|
addEndpoints(app: express.Express): void;
|
|
addEventHandlers(): void;
|
|
addWebhooks(app: express.Express): void;
|
|
addMiddleware?(app: express.Express): Promise<void>;
|
|
}
|