* feat: allows forcing/skipping calendar cache serving Signed-off-by: Omar López <zomars@me.com> * Update features.repository.ts * Added to HNB * type fixes * Update packages/prisma/migrations/20241216000000_add_calendar_cache_serve/migration.sql Co-authored-by: Keith Williams <keithwillcode@gmail.com> * Update packages/prisma/zod-utils.ts Co-authored-by: Keith Williams <keithwillcode@gmail.com> * Update selectedCalendar.ts --------- Signed-off-by: Omar López <zomars@me.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>
10 lines
243 B
SQL
10 lines
243 B
SQL
INSERT INTO
|
|
"Feature" (slug, enabled, description, "type")
|
|
VALUES
|
|
(
|
|
'calendar-cache-serve',
|
|
false,
|
|
'Whether to serve calendar cache by default or not on a team/user basis.',
|
|
'OPERATIONAL'
|
|
) ON CONFLICT (slug) DO NOTHING;
|