Skip to content

Commit 450c4a9

Browse files
authored
IBX-9328: Added the users_group_root_subtree_path config parameter (#594)
For more details see https://issues.ibexa.co/browse/IBX-9328 and #594 Key changes: * Added the `users_group_root_subtree_path` config parameter
1 parent 05d353c commit 450c4a9

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/bundle/Core/DependencyInjection/Configuration/Parser/Common.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,11 @@ public function addSemanticConfig(NodeBuilder $nodeBuilder)
130130
->example('10')
131131
->info('The ID of the user used for everyone who is not logged in.')
132132
->end()
133+
->scalarNode('users_group_root_subtree_path')
134+
->cannotBeEmpty()
135+
->example('/1/5')
136+
->info('The subtree path of root users group.')
137+
->end()
133138
->arrayNode('user')
134139
->children()
135140
->scalarNode('layout')

src/bundle/Core/Resources/config/default_settings.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ parameters:
9898
ibexa.site_access.config.default.binary_dir: "original"
9999
ibexa.site_access.config.default.anonymous_user_id: 10 # The ID of the user to be used for everyone who is not logged in
100100
ibexa.site_access.config.default.user_content_type_identifier: ['user']
101+
ibexa.site_access.config.default.users_group_root_subtree_path: '/1/5'
101102
ibexa.site_access.config.default.api_keys: { google_maps: ~ } # Google Maps APIs v3 key (https://developers.google.com/maps/documentation/javascript/get-api-key)
102103

103104
# IO

0 commit comments

Comments
 (0)