exposed-settings.ts 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. type TemplateLink = {
  2. name: string
  3. url: string
  4. trackingKey: string
  5. }
  6. export type ExposedSettings = {
  7. adminEmail: string
  8. appName: string
  9. cookieDomain: string
  10. dropboxAppName: string
  11. emailConfirmationDisabled: boolean
  12. enableSubscriptions: boolean
  13. gaToken?: string
  14. gaTokenV4?: string
  15. hasAffiliationsFeature: boolean
  16. hasLinkUrlFeature: boolean
  17. hasLinkedProjectFileFeature: boolean
  18. hasLinkedProjectOutputFileFeature: boolean
  19. hasSamlBeta?: boolean
  20. hasSamlFeature: boolean
  21. isOverleaf: boolean
  22. maxEntitiesPerProject: number
  23. maxUploadSize: number
  24. recaptchaDisabled: {
  25. invite: boolean
  26. login: boolean
  27. passwordReset: boolean
  28. register: boolean
  29. }
  30. recaptchaSiteKeyV3?: string
  31. samlInitPath?: string
  32. sentryAllowedOriginRegex: string
  33. sentryDsn?: string
  34. sentryEnvironment?: string
  35. sentryRelease?: string
  36. siteUrl: string
  37. textExtensions: string[]
  38. validRootDocExtensions: string[]
  39. templateLinks?: TemplateLink[]
  40. labsEnabled: boolean
  41. }