UNPKG

@cocalc/server

Version:

CoCalc server functionality: functions used by either the hub and the next.js server

38 lines (37 loc) 1.11 kB
import { KucalcValues } from "@cocalc/util/db-schema/site-defaults"; import { Strategy } from "@cocalc/util/types/sso"; export interface Customize { siteName?: string; siteDescription?: string; organizationName?: string; organizationEmail?: string; organizationURL?: string; termsOfServiceURL?: string; helpEmail?: string; contactEmail?: string; isCommercial?: boolean; kucalc?: KucalcValues; sshGateway?: boolean; sshGatewayDNS?: string; logoSquareURL?: string; logoRectangularURL?: string; splashImage?: string; indexInfo?: string; shareServer?: boolean; landingPages?: boolean; dns?: string; siteURL?: string; googleAnalytics?: string; anonymousSignup?: boolean; emailSignup?: boolean; accountCreationInstructions?: string; zendesk?: boolean; stripePublishableKey?: string; index_info_html?: string; imprint_html?: string; policies_html?: string; reCaptchaKey?: string; sandboxProjectId?: string; strategies: Strategy[]; } export default function getCustomize(): Promise<Customize>;