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',