feat: support self hosted grist (#5655)

Co-authored-by: Tom Moor <tom.moor@gmail.com>
This commit is contained in:
Philip Standt
2023-08-14 20:46:24 +02:00
committed by GitHub
parent b7bfc4bb1a
commit c38e045df2
6 changed files with 93 additions and 8 deletions

View File

@@ -24,4 +24,6 @@ function Grist(props: Props) {
Grist.ENABLED = [new RegExp("^https?://([a-z.-]+\\.)?getgrist\\.com/(.+)$")];
Grist.URL_PATH_REGEX = /(.+)/;
export default Grist;

View File

@@ -851,6 +851,8 @@
"Allow members to create new collections within the knowledge base": "Allow members to create new collections within the knowledge base",
"Draw.io deployment": "Draw.io deployment",
"Add your self-hosted draw.io installation url here to enable automatic embedding of diagrams within documents.": "Add your self-hosted draw.io installation url here to enable automatic embedding of diagrams within documents.",
"Grist deployment": "Grist deployment",
"Add your self-hosted grist installation URL here.": "Add your self-hosted grist installation URL here.",
"Sharing is currently disabled.": "Sharing is currently disabled.",
"You can globally enable and disable public document sharing in the <em>security settings</em>.": "You can globally enable and disable public document sharing in the <em>security settings</em>.",
"Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.": "Documents that have been shared are listed below. Anyone that has the public link can access a read-only version of the document until the link has been revoked.",

View File

@@ -79,6 +79,7 @@ export enum IntegrationType {
export enum IntegrationService {
Diagrams = "diagrams",
Grist = "grist",
Slack = "slack",
GoogleAnalytics = "google-analytics",
}