fix: Attachments broken when using non-collab and AWS bucket on the same host (https://github.com/outline/outline/discussions/3274\)
23 lines
645 B
TypeScript
23 lines
645 B
TypeScript
export type Role = "admin" | "viewer" | "member";
|
|
|
|
export type DateFilter = "day" | "week" | "month" | "year";
|
|
|
|
export type PublicEnv = {
|
|
URL: string;
|
|
CDN_URL: string;
|
|
COLLABORATION_URL: string;
|
|
AWS_S3_UPLOAD_BUCKET_URL: string;
|
|
AWS_S3_ACCELERATE_URL: string;
|
|
DEPLOYMENT: "hosted" | "";
|
|
ENVIRONMENT: "production" | "development";
|
|
SENTRY_DSN: string | undefined;
|
|
TEAM_LOGO: string | undefined;
|
|
SLACK_KEY: string | undefined;
|
|
SLACK_APP_ID: string | undefined;
|
|
MAXIMUM_IMPORT_SIZE: number;
|
|
SUBDOMAINS_ENABLED: boolean;
|
|
EMAIL_ENABLED: boolean;
|
|
GOOGLE_ANALYTICS_ID: string | undefined;
|
|
RELEASE: string | undefined;
|
|
};
|