Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Introduced turbopack alias for canvas in next.config.mjs. - Updated package.json scripts for development and branding tasks. - Added new dependencies for Tiptap extensions. - Implemented new demo layouts for agenda, contacts, drive, and mail applications. - Enhanced globals.css for improved theming and splash screen animations. - Added OAuth callback handling for drive mounts. - Updated layout components to integrate new demo shells and improve structure.
32 lines
866 B
TypeScript
32 lines
866 B
TypeScript
import type {
|
|
AgendaOrgSettings,
|
|
AgendaUserSettings,
|
|
} from "@/lib/agenda/agenda-settings-types"
|
|
|
|
export const DEFAULT_AGENDA_USER_SETTINGS: AgendaUserSettings = {
|
|
defaultVideoProvider: "ultimeet",
|
|
videoProviderApiKeys: {},
|
|
defaultInvitationIdentityKey: null,
|
|
autoImportInvitationSources: [],
|
|
invitationImportExclusions: [],
|
|
weekStart: "auto",
|
|
defaultQuickDurationMinutes: 60,
|
|
visibleHoursStart: 0,
|
|
visibleHoursEnd: 23 * 60 + 59,
|
|
timeFormat: "24h",
|
|
dragSnapMinutes: 15,
|
|
buttonSnapMinutes: 15,
|
|
externalCalendars: [],
|
|
calendarViews: [],
|
|
defaultCalendarViewId: null,
|
|
accountEnabledCalendarIds: {},
|
|
}
|
|
|
|
export const DEFAULT_AGENDA_ORG_SETTINGS: AgendaOrgSettings = {
|
|
default_theme_mode: "system",
|
|
enforce_org_theme: false,
|
|
default_video_provider: "ultimeet",
|
|
enforce_org_video_provider: false,
|
|
video_provider_api_keys: {},
|
|
}
|