From d702fbdc2357a01f5b5e1dca1f856e892b66d0d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Glawaty?= Date: Tue, 27 Feb 2024 23:31:42 +0100 Subject: [PATCH] Added new categories `ad_user_data` and `ad_personalization` in the fixtures --- CHANGELOG.md | 1 + src/Application/Fixture/resources/demo.php | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index decb8f7..cf1b888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added authentication via Azure AD. +- Added new categories `ad_user_data` and `ad_personalization` in the fixtures. ### Fixed diff --git a/src/Application/Fixture/resources/demo.php b/src/Application/Fixture/resources/demo.php index b1535a1..229e2c1 100644 --- a/src/Application/Fixture/resources/demo.php +++ b/src/Application/Fixture/resources/demo.php @@ -62,6 +62,26 @@ 'active' => true, 'necessary' => false, ], + 'ad_user_data' => [ + 'category_id' => CategoryId::new()->toString(), + 'code' => 'ad_user_data', + 'names' => [ + 'cs' => 'Ad user data', + 'en' => 'Ad user data', + ], + 'active' => true, + 'necessary' => false, + ], + 'ad_personalization' => [ + 'category_id' => CategoryId::new()->toString(), + 'code' => 'ad_personalization', + 'names' => [ + 'cs' => 'Ad personalization', + 'en' => 'Ad personalization', + ], + 'active' => true, + 'necessary' => false, + ], 'analytics_storage' => [ 'category_id' => CategoryId::new()->toString(), 'code' => 'analytics_storage',