create-nextblock 0.12.16 → 0.13.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/templates/nextblock-template/app/actions/interactions.ts +27 -4
- package/templates/nextblock-template/app/api/ai/global-agent/route.ts +287 -48
- package/templates/nextblock-template/app/api/cron/reset-sandbox/sandboxResetSql.ts +238 -209
- package/templates/nextblock-template/app/cms/blocks/components/BackgroundSelector.tsx +103 -8
- package/templates/nextblock-template/app/cms/blocks/components/BlockEditorArea.tsx +31 -2
- package/templates/nextblock-template/app/cms/blocks/components/ColumnEditor.tsx +37 -15
- package/templates/nextblock-template/app/cms/blocks/components/EditableBlock.tsx +26 -15
- package/templates/nextblock-template/app/cms/blocks/editors/ImageBlockEditor.tsx +123 -46
- package/templates/nextblock-template/app/cms/blocks/editors/SectionBlockEditor.tsx +8 -1
- package/templates/nextblock-template/app/cms/components/CortexGlobalAgentChat.tsx +62 -22
- package/templates/nextblock-template/app/cms/custom-blocks/components/BlockComposer.tsx +40 -2
- package/templates/nextblock-template/app/cms/interactions/EmailRecipientsInput.tsx +189 -0
- package/templates/nextblock-template/app/cms/interactions/InteractionsModerationClient.tsx +138 -71
- package/templates/nextblock-template/app/cms/media/import-external-image.ts +289 -0
- package/templates/nextblock-template/app/cms/pages/[id]/edit/EditPageClient.tsx +13 -10
- package/templates/nextblock-template/app/cms/pages/[id]/edit/page.tsx +14 -3
- package/templates/nextblock-template/app/cms/pages/actions.ts +59 -6
- package/templates/nextblock-template/app/cms/posts/[id]/edit/page.tsx +21 -11
- package/templates/nextblock-template/app/cms/posts/actions.ts +45 -0
- package/templates/nextblock-template/app/cms/products/[id]/edit/page.tsx +11 -9
- package/templates/nextblock-template/app/cms/settings/cortex-ai/StoredCortexAiSettingsClient.tsx +463 -227
- package/templates/nextblock-template/app/cms/settings/cortex-ai/actions.ts +220 -1
- package/templates/nextblock-template/app/cms/settings/cortex-ai/page.tsx +11 -0
- package/templates/nextblock-template/app/cms/users/[id]/edit/page.tsx +20 -1
- package/templates/nextblock-template/app/cms/users/actions.ts +69 -0
- package/templates/nextblock-template/app/cms/users/components/CreateUserForm.tsx +217 -0
- package/templates/nextblock-template/app/cms/users/components/UserForm.tsx +4 -1
- package/templates/nextblock-template/app/cms/users/new/page.tsx +44 -0
- package/templates/nextblock-template/app/cms/users/page.tsx +12 -3
- package/templates/nextblock-template/app/lib/homepage.ts +36 -0
- package/templates/nextblock-template/app/lib/sitemap-utils.ts +13 -6
- package/templates/nextblock-template/app/page.tsx +55 -12
- package/templates/nextblock-template/components/blocks/renderers/ImageBlockRenderer.tsx +56 -0
- package/templates/nextblock-template/components/blocks/renderers/SectionBlockRenderer.tsx +60 -30
- package/templates/nextblock-template/components/blocks/renderers/StockPhotoCredit.tsx +167 -0
- package/templates/nextblock-template/docs/08-NEXTBLOCK-CORTEX-AI-ARCHITECTURE.md +94 -6
- package/templates/nextblock-template/docs/09-LIVE-DRAFT-MODE.md +7 -1
- package/templates/nextblock-template/lib/blocks/blockRegistry.ts +29 -3
- package/templates/nextblock-template/lib/search/server.ts +11 -1
- package/templates/nextblock-template/lib/setup/migrations-bundle.ts +82 -72
- package/templates/nextblock-template/next-env.d.ts +1 -1
- package/templates/nextblock-template/package.json +1 -1
- package/templates/nextblock-template/proxy.ts +5 -0
- package/templates/nextblock-template/tsconfig.tsbuildinfo +1 -1
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
// AUTO-GENERATED FILE. Do not edit this file directly.
|
|
2
|
-
// Regenerate it from repo root with: npm run generate:sandbox
|
|
3
|
-
// Source of truth: tools/scripts/generate-sandbox-reset.ts and libs/db/src/supabase/migrations/*.sql
|
|
4
|
-
|
|
5
|
-
export const SANDBOX_RESET_SQL = `
|
|
6
|
-
-- AUTO-GENERATED: Sandbox Reset Script. Do Not Edit Manually.
|
|
7
|
-
-- Generated by tools/scripts/generate-sandbox-reset.ts
|
|
8
|
-
|
|
9
|
-
-- Step A: Erase all non-demo users
|
|
10
|
-
DELETE FROM auth.users
|
|
11
|
-
WHERE id NOT IN (
|
|
12
|
-
'63a8aa07-ef6e-4cc7-bafa-ece023c74366'::uuid,
|
|
13
|
-
'e3a2c121-70a4-4239-a9df-f70ce717f5a1'::uuid
|
|
14
|
-
);
|
|
15
|
-
|
|
16
|
-
-- Step B: Wipe public schema and truncate migrations
|
|
17
|
-
DROP SCHEMA public CASCADE;
|
|
18
|
-
CREATE SCHEMA public;
|
|
19
|
-
|
|
20
|
-
-- Restore default public schema privileges so the standard migrations succeed
|
|
21
|
-
GRANT USAGE ON SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
22
|
-
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
23
|
-
GRANT ALL PRIVILEGES ON ALL ROUTINES IN SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
24
|
-
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
25
|
-
ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT ALL ON TABLES TO postgres, anon, authenticated, service_role;
|
|
26
|
-
ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT ALL ON ROUTINES TO postgres, anon, authenticated, service_role;
|
|
27
|
-
ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT ALL ON SEQUENCES TO postgres, anon, authenticated, service_role;
|
|
28
|
-
|
|
29
|
-
TRUNCATE TABLE supabase_migrations.schema_migrations;
|
|
30
|
-
|
|
31
|
-
-- Step C: Execute full schema & seed from production migrations
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
-- >>> FROM: 00000000000000_baseline_schema.sql <<<
|
|
1
|
+
// AUTO-GENERATED FILE. Do not edit this file directly.
|
|
2
|
+
// Regenerate it from repo root with: npm run generate:sandbox
|
|
3
|
+
// Source of truth: tools/scripts/generate-sandbox-reset.ts and libs/db/src/supabase/migrations/*.sql
|
|
4
|
+
|
|
5
|
+
export const SANDBOX_RESET_SQL = `
|
|
6
|
+
-- AUTO-GENERATED: Sandbox Reset Script. Do Not Edit Manually.
|
|
7
|
+
-- Generated by tools/scripts/generate-sandbox-reset.ts
|
|
8
|
+
|
|
9
|
+
-- Step A: Erase all non-demo users
|
|
10
|
+
DELETE FROM auth.users
|
|
11
|
+
WHERE id NOT IN (
|
|
12
|
+
'63a8aa07-ef6e-4cc7-bafa-ece023c74366'::uuid,
|
|
13
|
+
'e3a2c121-70a4-4239-a9df-f70ce717f5a1'::uuid
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
-- Step B: Wipe public schema and truncate migrations
|
|
17
|
+
DROP SCHEMA public CASCADE;
|
|
18
|
+
CREATE SCHEMA public;
|
|
19
|
+
|
|
20
|
+
-- Restore default public schema privileges so the standard migrations succeed
|
|
21
|
+
GRANT USAGE ON SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
22
|
+
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
23
|
+
GRANT ALL PRIVILEGES ON ALL ROUTINES IN SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
24
|
+
GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO postgres, anon, authenticated, service_role;
|
|
25
|
+
ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT ALL ON TABLES TO postgres, anon, authenticated, service_role;
|
|
26
|
+
ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT ALL ON ROUTINES TO postgres, anon, authenticated, service_role;
|
|
27
|
+
ALTER DEFAULT PRIVILEGES FOR ROLE postgres IN SCHEMA public GRANT ALL ON SEQUENCES TO postgres, anon, authenticated, service_role;
|
|
28
|
+
|
|
29
|
+
TRUNCATE TABLE supabase_migrations.schema_migrations;
|
|
30
|
+
|
|
31
|
+
-- Step C: Execute full schema & seed from production migrations
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
-- >>> FROM: 00000000000000_baseline_schema.sql <<<
|
|
35
35
|
-- AUTO-GENERATED baseline (re-baseline of migrations 000..044). Idempotent; safe to replay.
|
|
36
36
|
-- 00 · schema: enums, functions, tables, sequences, defaults
|
|
37
37
|
-- Regenerate via tools/scripts/rebaseline-transform.mjs. Do not hand-edit.
|
|
@@ -2486,9 +2486,9 @@ CREATE TABLE IF NOT EXISTS public.variant_attribute_mapping (
|
|
|
2486
2486
|
variant_id uuid NOT NULL,
|
|
2487
2487
|
attribute_term_id uuid NOT NULL
|
|
2488
2488
|
);
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
-- >>> FROM: 00000000000001_baseline_constraints_and_indexes.sql <<<
|
|
2489
|
+
|
|
2490
|
+
|
|
2491
|
+
-- >>> FROM: 00000000000001_baseline_constraints_and_indexes.sql <<<
|
|
2492
2492
|
-- AUTO-GENERATED baseline (re-baseline of migrations 000..044). Idempotent; safe to replay.
|
|
2493
2493
|
-- 01 · constraints (PK / unique / check / FK) + indexes
|
|
2494
2494
|
-- Regenerate via tools/scripts/rebaseline-transform.mjs. Do not hand-edit.
|
|
@@ -3560,9 +3560,9 @@ DO $rb$ BEGIN
|
|
|
3560
3560
|
ADD CONSTRAINT variant_attribute_mapping_variant_id_fkey FOREIGN KEY (variant_id) REFERENCES public.product_variants(id) ON DELETE CASCADE;
|
|
3561
3561
|
END IF;
|
|
3562
3562
|
END $rb$;
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
-- >>> FROM: 00000000000002_baseline_security_and_grants.sql <<<
|
|
3563
|
+
|
|
3564
|
+
|
|
3565
|
+
-- >>> FROM: 00000000000002_baseline_security_and_grants.sql <<<
|
|
3566
3566
|
-- AUTO-GENERATED baseline (re-baseline of migrations 000..044). Idempotent; safe to replay.
|
|
3567
3567
|
-- 02 · row-level security, policies, triggers, grants
|
|
3568
3568
|
-- Regenerate via tools/scripts/rebaseline-transform.mjs. Do not hand-edit.
|
|
@@ -4898,9 +4898,9 @@ CREATE TRIGGER on_auth_user_created
|
|
|
4898
4898
|
FOR EACH ROW
|
|
4899
4899
|
EXECUTE FUNCTION public.handle_new_user();
|
|
4900
4900
|
REVOKE EXECUTE ON FUNCTION public.handle_new_user() FROM PUBLIC, anon, authenticated;
|
|
4901
|
-
|
|
4902
|
-
|
|
4903
|
-
-- >>> FROM: 00000000000003_baseline_seed.sql <<<
|
|
4901
|
+
|
|
4902
|
+
|
|
4903
|
+
-- >>> FROM: 00000000000003_baseline_seed.sql <<<
|
|
4904
4904
|
-- AUTO-GENERATED baseline (re-baseline of migrations 000..044). Idempotent; safe to replay.
|
|
4905
4905
|
-- 03 · seed: canonical NextBlock demo content (no users, no secrets)
|
|
4906
4906
|
-- Regenerate via tools/scripts/rebaseline-transform.mjs. Do not hand-edit.
|
|
@@ -5369,9 +5369,9 @@ SELECT pg_catalog.setval('public.languages_id_seq', COALESCE((SELECT MAX(id) FRO
|
|
|
5369
5369
|
SELECT pg_catalog.setval('public.navigation_items_id_seq', COALESCE((SELECT MAX(id) FROM public.navigation_items), 1), true);
|
|
5370
5370
|
SELECT pg_catalog.setval('public.pages_id_seq', COALESCE((SELECT MAX(id) FROM public.pages), 1), true);
|
|
5371
5371
|
SELECT pg_catalog.setval('public.posts_id_seq', COALESCE((SELECT MAX(id) FROM public.posts), 1), true);
|
|
5372
|
-
|
|
5373
|
-
|
|
5374
|
-
-- >>> FROM: 00000000000004_default_logo_email_safe.sql <<<
|
|
5372
|
+
|
|
5373
|
+
|
|
5374
|
+
-- >>> FROM: 00000000000004_default_logo_email_safe.sql <<<
|
|
5375
5375
|
-- Swap the seeded DEFAULT site logo from the WebP asset to a bundled PNG.
|
|
5376
5376
|
--
|
|
5377
5377
|
-- WebP (and AVIF) don't render in Outlook and several other email clients, so the default
|
|
@@ -5396,9 +5396,9 @@ UPDATE public.logos
|
|
|
5396
5396
|
SET media_id = 'a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d'
|
|
5397
5397
|
WHERE id = 'd45ef03d-27fc-4099-8b46-1cdf82d658d2'
|
|
5398
5398
|
AND media_id = 'ea6fdaf5-f8de-416c-9f2b-b689b7a4ed38';
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
-- >>> FROM: 00000000000005_add_custom_canonical.sql <<<
|
|
5399
|
+
|
|
5400
|
+
|
|
5401
|
+
-- >>> FROM: 00000000000005_add_custom_canonical.sql <<<
|
|
5402
5402
|
-- Add a nullable \`custom_canonical\` column to pages, posts and products.
|
|
5403
5403
|
--
|
|
5404
5404
|
-- This is the per-content manual canonical override used by each route's
|
|
@@ -5412,9 +5412,9 @@ WHERE id = 'd45ef03d-27fc-4099-8b46-1cdf82d658d2'
|
|
|
5412
5412
|
ALTER TABLE public.pages ADD COLUMN IF NOT EXISTS custom_canonical text;
|
|
5413
5413
|
ALTER TABLE public.posts ADD COLUMN IF NOT EXISTS custom_canonical text;
|
|
5414
5414
|
ALTER TABLE public.products ADD COLUMN IF NOT EXISTS custom_canonical text;
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
-- >>> FROM: 00000000000006_home_live_demo_promo.sql <<<
|
|
5415
|
+
|
|
5416
|
+
|
|
5417
|
+
-- >>> FROM: 00000000000006_home_live_demo_promo.sql <<<
|
|
5418
5418
|
-- 00000000000006_home_sandbox_promo.sql
|
|
5419
5419
|
-- Adds a "Live Demo" promo section to the English (slug 'home') and French
|
|
5420
5420
|
-- (slug 'accueil') home pages that drives visitors to the public sandbox at
|
|
@@ -5482,9 +5482,9 @@ $fr$::jsonb, 1);
|
|
|
5482
5482
|
END IF;
|
|
5483
5483
|
END
|
|
5484
5484
|
$body$;
|
|
5485
|
-
|
|
5486
|
-
|
|
5487
|
-
-- >>> FROM: 00000000000007_home_live_demo_promo_copy_fix.sql <<<
|
|
5485
|
+
|
|
5486
|
+
|
|
5487
|
+
-- >>> FROM: 00000000000007_home_live_demo_promo_copy_fix.sql <<<
|
|
5488
5488
|
-- 00000000000007_home_live_demo_promo_copy_fix.sql
|
|
5489
5489
|
-- Corrects the "Live Demo" promo that migration 006 seeded on the EN (slug 'home')
|
|
5490
5490
|
-- and FR (slug 'accueil') home pages. 006 was already applied to production and the
|
|
@@ -5534,9 +5534,9 @@ $fr$::jsonb,
|
|
|
5534
5534
|
AND content::text LIKE '%nb-sandbox-promo%';
|
|
5535
5535
|
END
|
|
5536
5536
|
$body$;
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
-- >>> FROM: 00000000000008_setup_article_reorder.sql <<<
|
|
5537
|
+
|
|
5538
|
+
|
|
5539
|
+
-- >>> FROM: 00000000000008_setup_article_reorder.sql <<<
|
|
5540
5540
|
-- 00000000000008_setup_article_reorder.sql
|
|
5541
5541
|
-- Reorders and rewrites the "How to Install NextBlock" setup guide on BOTH language
|
|
5542
5542
|
-- twins: EN (post slug 'how-to-setup-nextblock', post_id=3 / block id=40) and FR
|
|
@@ -5567,9 +5567,9 @@ $nbfr$::jsonb,
|
|
|
5567
5567
|
updated_at = now()
|
|
5568
5568
|
WHERE post_id = 4
|
|
5569
5569
|
AND block_type = 'text';
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
-- >>> FROM: 00000000000009_home_live_demo_promo_contrast.sql <<<
|
|
5570
|
+
|
|
5571
|
+
|
|
5572
|
+
-- >>> FROM: 00000000000009_home_live_demo_promo_contrast.sql <<<
|
|
5573
5573
|
-- 00000000000009_home_live_demo_promo_contrast.sql
|
|
5574
5574
|
-- Restyles the "Live Demo" promo that migrations 006/007 seeded on the EN (slug 'home')
|
|
5575
5575
|
-- and FR (slug 'accueil') home pages. 006/007 gave it a fixed dark-navy GRADIENT section
|
|
@@ -5622,151 +5622,180 @@ $fr$::jsonb,
|
|
|
5622
5622
|
AND content::text LIKE '%nb-sandbox-promo%';
|
|
5623
5623
|
END
|
|
5624
5624
|
$body$;
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
-- >>> FROM: 00000000000010_drop_github_username.sql <<<
|
|
5628
|
-
-- Drop the github_username profile column and remove the GitHub-auth artifacts.
|
|
5629
|
-
--
|
|
5630
|
-
-- GitHub OAuth sign-in / account-linking was removed from the app: it cannot be
|
|
5631
|
-
-- provisioned as part of a one-click deployment (each install needs its own GitHub
|
|
5632
|
-
-- OAuth app + client secret + Supabase's manual-linking toggle, none of which can
|
|
5633
|
-
-- ship in a migration). github_username was only ever populated from that OAuth
|
|
5634
|
-
-- flow, so the column and its seed strings are now dead.
|
|
5635
|
-
--
|
|
5636
|
-
-- NOTE: the self-update "Connect GitHub" flow (lib/updates/*, ConnectGitHubButton)
|
|
5637
|
-
-- is a separate feature and is intentionally left untouched — the connect_github
|
|
5638
|
-
-- translation is kept for it.
|
|
5639
|
-
|
|
5640
|
-
-- 1. Rewrite handle_new_user() so new signups no longer read/populate github_username.
|
|
5641
|
-
CREATE OR REPLACE FUNCTION public.handle_new_user() RETURNS trigger
|
|
5642
|
-
LANGUAGE plpgsql SECURITY DEFINER
|
|
5643
|
-
SET search_path TO 'public'
|
|
5644
|
-
AS $$
|
|
5645
|
-
DECLARE
|
|
5646
|
-
admin_flag_set boolean := false;
|
|
5647
|
-
user_role public.user_role;
|
|
5648
|
-
v_full_name text;
|
|
5649
|
-
v_avatar_url text;
|
|
5650
|
-
BEGIN
|
|
5651
|
-
INSERT INTO public.site_settings (key, value)
|
|
5652
|
-
VALUES ('is_admin_created', 'false'::jsonb)
|
|
5653
|
-
ON CONFLICT (key) DO NOTHING;
|
|
5654
|
-
|
|
5655
|
-
SELECT COALESCE(value::jsonb::boolean, false)
|
|
5656
|
-
INTO admin_flag_set
|
|
5657
|
-
FROM public.site_settings
|
|
5658
|
-
WHERE key = 'is_admin_created'
|
|
5659
|
-
FOR UPDATE;
|
|
5660
|
-
|
|
5661
|
-
IF admin_flag_set = false THEN
|
|
5662
|
-
user_role := 'ADMIN'::public.user_role;
|
|
5663
|
-
|
|
5664
|
-
UPDATE public.site_settings
|
|
5665
|
-
SET value = 'true'::jsonb
|
|
5666
|
-
WHERE key = 'is_admin_created';
|
|
5667
|
-
ELSE
|
|
5668
|
-
user_role := 'USER'::public.user_role;
|
|
5669
|
-
END IF;
|
|
5670
|
-
|
|
5671
|
-
v_full_name := NEW.raw_user_meta_data->>'full_name';
|
|
5672
|
-
v_avatar_url := NEW.raw_user_meta_data->>'avatar_url';
|
|
5673
|
-
|
|
5674
|
-
INSERT INTO public.profiles (
|
|
5675
|
-
id,
|
|
5676
|
-
role,
|
|
5677
|
-
full_name,
|
|
5678
|
-
avatar_url
|
|
5679
|
-
)
|
|
5680
|
-
VALUES (
|
|
5681
|
-
NEW.id,
|
|
5682
|
-
user_role,
|
|
5683
|
-
v_full_name,
|
|
5684
|
-
v_avatar_url
|
|
5685
|
-
)
|
|
5686
|
-
ON CONFLICT (id) DO UPDATE SET
|
|
5687
|
-
full_name = EXCLUDED.full_name,
|
|
5688
|
-
avatar_url = EXCLUDED.avatar_url;
|
|
5689
|
-
|
|
5690
|
-
RETURN NEW;
|
|
5691
|
-
END;
|
|
5692
|
-
$$;
|
|
5693
|
-
|
|
5694
|
-
-- 2. Drop the column now that nothing writes it.
|
|
5695
|
-
ALTER TABLE public.profiles DROP COLUMN IF EXISTS github_username;
|
|
5696
|
-
|
|
5697
|
-
-- 3. Remove the GitHub-auth-only translation strings. connect_github is intentionally
|
|
5698
|
-
-- kept — it is still used by the self-update "Connect GitHub" button.
|
|
5699
|
-
DELETE FROM public.translations
|
|
5700
|
-
WHERE key IN (
|
|
5701
|
-
'continue_with_github',
|
|
5702
|
-
'github_username',
|
|
5703
|
-
'github_username_help',
|
|
5704
|
-
'github_link_failed',
|
|
5705
|
-
'github_connected'
|
|
5706
|
-
);
|
|
5707
|
-
|
|
5708
|
-
|
|
5709
|
-
-- >>> FROM: 00000000000011_language_detection_admin_only.sql <<<
|
|
5710
|
-
-- Restrict writes to the language-detection settings row to ADMIN only.
|
|
5711
|
-
--
|
|
5712
|
-
-- \`site_settings.language_detection_settings\` is a non-sensitive, anon-READABLE
|
|
5713
|
-
-- key (the request proxy reads it with the anon client to pick a visitor's first
|
|
5714
|
-
-- language). The CMS surfaces it under /cms/settings (ADMIN-only) and the server
|
|
5715
|
-
-- action guards with an ADMIN check, but the baseline write policies let ADMIN
|
|
5716
|
-
-- *or* WRITER write any non-sensitive key — so a WRITER could change site-wide
|
|
5717
|
-
-- detection directly via PostgREST. This migration adds the key to the ADMIN-only
|
|
5718
|
-
-- write group (INSERT/UPDATE/DELETE) to match the UI boundary, while leaving the
|
|
5719
|
-
-- SELECT policy untouched so the proxy's anon read keeps working.
|
|
5720
|
-
--
|
|
5721
|
-
-- Forward-only; recreates the three write policies idempotently.
|
|
5722
|
-
|
|
5723
|
-
DROP POLICY IF EXISTS site_settings_insert_policy ON public.site_settings;
|
|
5724
|
-
CREATE POLICY site_settings_insert_policy ON public.site_settings FOR INSERT TO authenticated WITH CHECK ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5725
|
-
|
|
5726
|
-
DROP POLICY IF EXISTS site_settings_update_policy ON public.site_settings;
|
|
5727
|
-
CREATE POLICY site_settings_update_policy ON public.site_settings FOR UPDATE TO authenticated USING ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role)))) WITH CHECK ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5728
|
-
|
|
5729
|
-
DROP POLICY IF EXISTS site_settings_delete_policy ON public.site_settings;
|
|
5730
|
-
CREATE POLICY site_settings_delete_policy ON public.site_settings FOR DELETE TO authenticated USING ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
|
|
5738
|
-
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
-
|
|
5758
|
-
|
|
5759
|
-
|
|
5760
|
-
|
|
5761
|
-
-- Step
|
|
5762
|
-
--
|
|
5763
|
-
|
|
5764
|
-
|
|
5765
|
-
|
|
5766
|
-
|
|
5767
|
-
|
|
5768
|
-
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
|
|
5772
|
-
|
|
5625
|
+
|
|
5626
|
+
|
|
5627
|
+
-- >>> FROM: 00000000000010_drop_github_username.sql <<<
|
|
5628
|
+
-- Drop the github_username profile column and remove the GitHub-auth artifacts.
|
|
5629
|
+
--
|
|
5630
|
+
-- GitHub OAuth sign-in / account-linking was removed from the app: it cannot be
|
|
5631
|
+
-- provisioned as part of a one-click deployment (each install needs its own GitHub
|
|
5632
|
+
-- OAuth app + client secret + Supabase's manual-linking toggle, none of which can
|
|
5633
|
+
-- ship in a migration). github_username was only ever populated from that OAuth
|
|
5634
|
+
-- flow, so the column and its seed strings are now dead.
|
|
5635
|
+
--
|
|
5636
|
+
-- NOTE: the self-update "Connect GitHub" flow (lib/updates/*, ConnectGitHubButton)
|
|
5637
|
+
-- is a separate feature and is intentionally left untouched — the connect_github
|
|
5638
|
+
-- translation is kept for it.
|
|
5639
|
+
|
|
5640
|
+
-- 1. Rewrite handle_new_user() so new signups no longer read/populate github_username.
|
|
5641
|
+
CREATE OR REPLACE FUNCTION public.handle_new_user() RETURNS trigger
|
|
5642
|
+
LANGUAGE plpgsql SECURITY DEFINER
|
|
5643
|
+
SET search_path TO 'public'
|
|
5644
|
+
AS $$
|
|
5645
|
+
DECLARE
|
|
5646
|
+
admin_flag_set boolean := false;
|
|
5647
|
+
user_role public.user_role;
|
|
5648
|
+
v_full_name text;
|
|
5649
|
+
v_avatar_url text;
|
|
5650
|
+
BEGIN
|
|
5651
|
+
INSERT INTO public.site_settings (key, value)
|
|
5652
|
+
VALUES ('is_admin_created', 'false'::jsonb)
|
|
5653
|
+
ON CONFLICT (key) DO NOTHING;
|
|
5654
|
+
|
|
5655
|
+
SELECT COALESCE(value::jsonb::boolean, false)
|
|
5656
|
+
INTO admin_flag_set
|
|
5657
|
+
FROM public.site_settings
|
|
5658
|
+
WHERE key = 'is_admin_created'
|
|
5659
|
+
FOR UPDATE;
|
|
5660
|
+
|
|
5661
|
+
IF admin_flag_set = false THEN
|
|
5662
|
+
user_role := 'ADMIN'::public.user_role;
|
|
5663
|
+
|
|
5664
|
+
UPDATE public.site_settings
|
|
5665
|
+
SET value = 'true'::jsonb
|
|
5666
|
+
WHERE key = 'is_admin_created';
|
|
5667
|
+
ELSE
|
|
5668
|
+
user_role := 'USER'::public.user_role;
|
|
5669
|
+
END IF;
|
|
5670
|
+
|
|
5671
|
+
v_full_name := NEW.raw_user_meta_data->>'full_name';
|
|
5672
|
+
v_avatar_url := NEW.raw_user_meta_data->>'avatar_url';
|
|
5673
|
+
|
|
5674
|
+
INSERT INTO public.profiles (
|
|
5675
|
+
id,
|
|
5676
|
+
role,
|
|
5677
|
+
full_name,
|
|
5678
|
+
avatar_url
|
|
5679
|
+
)
|
|
5680
|
+
VALUES (
|
|
5681
|
+
NEW.id,
|
|
5682
|
+
user_role,
|
|
5683
|
+
v_full_name,
|
|
5684
|
+
v_avatar_url
|
|
5685
|
+
)
|
|
5686
|
+
ON CONFLICT (id) DO UPDATE SET
|
|
5687
|
+
full_name = EXCLUDED.full_name,
|
|
5688
|
+
avatar_url = EXCLUDED.avatar_url;
|
|
5689
|
+
|
|
5690
|
+
RETURN NEW;
|
|
5691
|
+
END;
|
|
5692
|
+
$$;
|
|
5693
|
+
|
|
5694
|
+
-- 2. Drop the column now that nothing writes it.
|
|
5695
|
+
ALTER TABLE public.profiles DROP COLUMN IF EXISTS github_username;
|
|
5696
|
+
|
|
5697
|
+
-- 3. Remove the GitHub-auth-only translation strings. connect_github is intentionally
|
|
5698
|
+
-- kept — it is still used by the self-update "Connect GitHub" button.
|
|
5699
|
+
DELETE FROM public.translations
|
|
5700
|
+
WHERE key IN (
|
|
5701
|
+
'continue_with_github',
|
|
5702
|
+
'github_username',
|
|
5703
|
+
'github_username_help',
|
|
5704
|
+
'github_link_failed',
|
|
5705
|
+
'github_connected'
|
|
5706
|
+
);
|
|
5707
|
+
|
|
5708
|
+
|
|
5709
|
+
-- >>> FROM: 00000000000011_language_detection_admin_only.sql <<<
|
|
5710
|
+
-- Restrict writes to the language-detection settings row to ADMIN only.
|
|
5711
|
+
--
|
|
5712
|
+
-- \`site_settings.language_detection_settings\` is a non-sensitive, anon-READABLE
|
|
5713
|
+
-- key (the request proxy reads it with the anon client to pick a visitor's first
|
|
5714
|
+
-- language). The CMS surfaces it under /cms/settings (ADMIN-only) and the server
|
|
5715
|
+
-- action guards with an ADMIN check, but the baseline write policies let ADMIN
|
|
5716
|
+
-- *or* WRITER write any non-sensitive key — so a WRITER could change site-wide
|
|
5717
|
+
-- detection directly via PostgREST. This migration adds the key to the ADMIN-only
|
|
5718
|
+
-- write group (INSERT/UPDATE/DELETE) to match the UI boundary, while leaving the
|
|
5719
|
+
-- SELECT policy untouched so the proxy's anon read keeps working.
|
|
5720
|
+
--
|
|
5721
|
+
-- Forward-only; recreates the three write policies idempotently.
|
|
5722
|
+
|
|
5723
|
+
DROP POLICY IF EXISTS site_settings_insert_policy ON public.site_settings;
|
|
5724
|
+
CREATE POLICY site_settings_insert_policy ON public.site_settings FOR INSERT TO authenticated WITH CHECK ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5725
|
+
|
|
5726
|
+
DROP POLICY IF EXISTS site_settings_update_policy ON public.site_settings;
|
|
5727
|
+
CREATE POLICY site_settings_update_policy ON public.site_settings FOR UPDATE TO authenticated USING ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role)))) WITH CHECK ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5728
|
+
|
|
5729
|
+
DROP POLICY IF EXISTS site_settings_delete_policy ON public.site_settings;
|
|
5730
|
+
CREATE POLICY site_settings_delete_policy ON public.site_settings FOR DELETE TO authenticated USING ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5731
|
+
|
|
5732
|
+
|
|
5733
|
+
-- >>> FROM: 00000000000012_cortex_ai_stock_photo_settings.sql <<<
|
|
5734
|
+
-- Protect the Cortex AI stock-photo provider API keys stored in site_settings.
|
|
5735
|
+
--
|
|
5736
|
+
-- The stock-photo search tool (search_stock_photos) can read a Pexels or Unsplash
|
|
5737
|
+
-- API key from site_settings so the key lives in the database instead of an env var.
|
|
5738
|
+
-- Those two rows are SECRETS and must never be publicly readable: like the OpenRouter
|
|
5739
|
+
-- BYOK key, they belong in the sensitive-keys group that only authenticated ADMINs can
|
|
5740
|
+
-- read or write. The baseline site_settings SELECT policy makes any key NOT in that
|
|
5741
|
+
-- group anon-readable, so we add the two stock-photo keys to every policy's sensitive
|
|
5742
|
+
-- array. The value stored is an encrypted envelope, but we protect the row regardless.
|
|
5743
|
+
--
|
|
5744
|
+
-- Forward-only; recreates all four site_settings policies idempotently, preserving the
|
|
5745
|
+
-- existing sensitive keys (including language_detection_settings on the write policies,
|
|
5746
|
+
-- which stays anon-READABLE and is therefore not added to the SELECT policy).
|
|
5747
|
+
|
|
5748
|
+
DROP POLICY IF EXISTS site_settings_read_policy ON public.site_settings;
|
|
5749
|
+
CREATE POLICY site_settings_read_policy ON public.site_settings FOR SELECT USING (((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT auth.role() AS role) = 'authenticated'::text) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5750
|
+
|
|
5751
|
+
DROP POLICY IF EXISTS site_settings_insert_policy ON public.site_settings;
|
|
5752
|
+
CREATE POLICY site_settings_insert_policy ON public.site_settings FOR INSERT TO authenticated WITH CHECK ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5753
|
+
|
|
5754
|
+
DROP POLICY IF EXISTS site_settings_update_policy ON public.site_settings;
|
|
5755
|
+
CREATE POLICY site_settings_update_policy ON public.site_settings FOR UPDATE TO authenticated USING ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role)))) WITH CHECK ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5756
|
+
|
|
5757
|
+
DROP POLICY IF EXISTS site_settings_delete_policy ON public.site_settings;
|
|
5758
|
+
CREATE POLICY site_settings_delete_policy ON public.site_settings FOR DELETE TO authenticated USING ((((key <> ALL (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = ANY (ARRAY['ADMIN'::public.user_role, 'WRITER'::public.user_role]))) OR ((key = ANY (ARRAY['cortex_ai_openrouter_api_key'::text, 'bot_protection_secret'::text, 'email_secret'::text, 'payment_secret'::text, 'language_detection_settings'::text, 'cortex_ai_pexels_api_key'::text, 'cortex_ai_unsplash_access_key'::text])) AND (( SELECT public.get_current_user_role() AS get_current_user_role) = 'ADMIN'::public.user_role))));
|
|
5759
|
+
|
|
5760
|
+
|
|
5761
|
+
-- Step D: Record the applied migrations in history (truncated in Step B) so
|
|
5762
|
+
-- \`npm run db:migrate:check\` reports up to date instead of listing every file as pending.
|
|
5763
|
+
INSERT INTO supabase_migrations.schema_migrations (version, name) VALUES
|
|
5764
|
+
('00000000000000', 'baseline_schema'),
|
|
5765
|
+
('00000000000001', 'baseline_constraints_and_indexes'),
|
|
5766
|
+
('00000000000002', 'baseline_security_and_grants'),
|
|
5767
|
+
('00000000000003', 'baseline_seed'),
|
|
5768
|
+
('00000000000004', 'default_logo_email_safe'),
|
|
5769
|
+
('00000000000005', 'add_custom_canonical'),
|
|
5770
|
+
('00000000000006', 'home_live_demo_promo'),
|
|
5771
|
+
('00000000000007', 'home_live_demo_promo_copy_fix'),
|
|
5772
|
+
('00000000000008', 'setup_article_reorder'),
|
|
5773
|
+
('00000000000009', 'home_live_demo_promo_contrast'),
|
|
5774
|
+
('00000000000010', 'drop_github_username'),
|
|
5775
|
+
('00000000000011', 'language_detection_admin_only'),
|
|
5776
|
+
('00000000000012', 'cortex_ai_stock_photo_settings')
|
|
5777
|
+
ON CONFLICT (version) DO NOTHING;
|
|
5778
|
+
|
|
5779
|
+
-- Step E: Anchor preserved profiles
|
|
5780
|
+
INSERT INTO public.profiles (id, updated_at, full_name, avatar_url, website, role)
|
|
5781
|
+
SELECT preserved_user.id, NULL, NULL, NULL, NULL, 'ADMIN'
|
|
5782
|
+
FROM (
|
|
5783
|
+
VALUES
|
|
5784
|
+
('63a8aa07-ef6e-4cc7-bafa-ece023c74366'::uuid),
|
|
5785
|
+
('e3a2c121-70a4-4239-a9df-f70ce717f5a1'::uuid)
|
|
5786
|
+
) AS preserved_user(id)
|
|
5787
|
+
WHERE EXISTS (SELECT 1 FROM auth.users WHERE id = preserved_user.id)
|
|
5788
|
+
AND NOT EXISTS (SELECT 1 FROM public.profiles WHERE id = preserved_user.id);
|
|
5789
|
+
|
|
5790
|
+
-- Step F: Re-assert the "first admin exists" flag. The sandbox preserves its demo
|
|
5791
|
+
-- ADMIN users across the wipe (Steps A & E), but the reseeded baseline resets
|
|
5792
|
+
-- is_admin_created to 'false' and handle_new_user() only flips it on a NEW auth.users
|
|
5793
|
+
-- INSERT -- which never fires for preserved users. Without this the proxy setup-gate
|
|
5794
|
+
-- funnels ALL sandbox traffic (including this reset cron on its next run) to /setup even
|
|
5795
|
+
-- though admins already exist. Guarded on an ADMIN profile actually being present.
|
|
5796
|
+
UPDATE public.site_settings
|
|
5797
|
+
SET value = 'true'::jsonb
|
|
5798
|
+
WHERE key = 'is_admin_created'
|
|
5799
|
+
AND EXISTS (SELECT 1 FROM public.profiles WHERE role = 'ADMIN'::public.user_role);
|
|
5800
|
+
|
|
5801
|
+
`;
|