From 9f1368e6c5f2913970a79f3bf531f757c74c1693 Mon Sep 17 00:00:00 2001 From: Anton Tranelis <31516529+antontranelis@users.noreply.github.com> Date: Thu, 9 Oct 2025 14:51:06 +0200 Subject: [PATCH] fix(backend): seed themes (#421) --- .../development/seed/Themes.json | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 backend/directus-config/development/seed/Themes.json diff --git a/backend/directus-config/development/seed/Themes.json b/backend/directus-config/development/seed/Themes.json new file mode 100644 index 00000000..993dfffc --- /dev/null +++ b/backend/directus-config/development/seed/Themes.json @@ -0,0 +1,49 @@ +{ + "collection": "Themes", + "meta": { + "insert_order": 1, + "create": true, + "update": true, + "delete": true, + "preserve_ids": true, + "ignore_on_update": [] + }, + "data": [ + { + "_sync_id": "theme-light", + "theme": "light" + }, + { + "_sync_id": "theme-dark", + "theme": "dark" + }, + { + "_sync_id": "theme-valentine", + "theme": "valentine" + }, + { + "_sync_id": "theme-retro", + "theme": "retro" + }, + { + "_sync_id": "theme-aqua", + "theme": "aqua" + }, + { + "_sync_id": "theme-cyberpunk", + "theme": "cyberpunk" + }, + { + "_sync_id": "theme-caramellatte", + "theme": "caramellatte" + }, + { + "_sync_id": "theme-abyss", + "theme": "abyss" + }, + { + "_sync_id": "theme-silk", + "theme": "silk" + } + ] +} \ No newline at end of file