diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-05-20 18:55:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 18:55:18 +0200 |
commit | 697b83bf50e6135c13dd36ec9718eec9561df8d7 (patch) | |
tree | fbc83b1d8ac0830c9580f450abda4fe20790e212 /apps/settings/lib | |
parent | d90583ca2810dbd94976f2f45d46703266f608cf (diff) | |
parent | 4f4d777767ae254a6ce7eff07f9a404e3acc0f65 (diff) | |
download | nextcloud-server-697b83bf50e6135c13dd36ec9718eec9561df8d7.tar.gz nextcloud-server-697b83bf50e6135c13dd36ec9718eec9561df8d7.zip |
Merge pull request #32501 from nextcloud/cleanup/admin-delegation-setting
Cleanup admin delegation setting page
Diffstat (limited to 'apps/settings/lib')
-rw-r--r-- | apps/settings/lib/Settings/Admin/Delegation.php | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/apps/settings/lib/Settings/Admin/Delegation.php b/apps/settings/lib/Settings/Admin/Delegation.php index 401d5b028cc..274b71150ed 100644 --- a/apps/settings/lib/Settings/Admin/Delegation.php +++ b/apps/settings/lib/Settings/Admin/Delegation.php @@ -31,30 +31,27 @@ use OCP\IGroupManager; use OCP\Settings\IDelegatedSettings; use OCP\Settings\IManager; use OCP\Settings\ISettings; +use OCP\IURLGenerator; class Delegation implements ISettings { - /** @var IManager */ - private $settingManager; - - /** @var IInitialState $initialStateService */ - private $initialStateService; - - /** @var IGroupManager $groupManager */ - private $groupManager; - - /** @var AuthorizedGroupService $authorizedGroupService */ - private $authorizedGroupService; + private IManager $settingManager; + private IInitialState $initialStateService; + private IGroupManager $groupManager; + private AuthorizedGroupService $authorizedGroupService; + private IURLGenerator $urlGenerator; public function __construct( IManager $settingManager, IInitialState $initialStateService, IGroupManager $groupManager, - AuthorizedGroupService $authorizedGroupService + AuthorizedGroupService $authorizedGroupService, + IURLGenerator $urlGenerator ) { $this->settingManager = $settingManager; $this->initialStateService = $initialStateService; $this->groupManager = $groupManager; $this->authorizedGroupService = $authorizedGroupService; + $this->urlGenerator = $urlGenerator; } /** @@ -128,6 +125,7 @@ class Delegation implements ISettings { $this->initSettingState(); $this->initAvailableGroupState(); $this->initAuthorizedGroupState(); + $this->initialStateService->provideInitialState('authorized-settings-doc-link', $this->urlGenerator->linkToDocs('admin-delegation')); return new TemplateResponse(Application::APP_ID, 'settings/admin/delegation', [], ''); } |