From 41cbb05aea2a48291825d5b3879a866300f5bcec Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 9 Sep 2019 22:12:29 +0200 Subject: Split personal security settings in code Instead of one big monolitic sections this is the first step in breaking down the settings. This should make is easiet to see what does what. As well as nicely splitting up the sections. Signed-off-by: Roeland Jago Douma --- lib/private/Settings/Manager.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/private') diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index 7e3edfa9df0..1a9e8261ee8 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -298,6 +298,10 @@ class Manager implements IManager { /** @var ISettings $form */ $form = $this->container->query(Personal\Security::class); $forms[$form->getPriority()] = [$form]; + + /** @var ISettings $form */ + $form = $this->container->query(Personal\Security\Authtokens::class); + $forms[$form->getPriority()] = [$form]; } if ($section === 'additional') { /** @var ISettings $form */ -- cgit v1.2.3