diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-09-09 22:12:29 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-09-10 16:22:41 +0200 |
commit | 41cbb05aea2a48291825d5b3879a866300f5bcec (patch) | |
tree | d399dc52e470d132ebd1ed938d75703d3ff49a20 /lib/private/Settings | |
parent | 15e16d4a857fbf4152a94900b2abda60da87603d (diff) | |
download | nextcloud-server-41cbb05aea2a48291825d5b3879a866300f5bcec.tar.gz nextcloud-server-41cbb05aea2a48291825d5b3879a866300f5bcec.zip |
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 <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/Settings')
-rw-r--r-- | lib/private/Settings/Manager.php | 4 |
1 files changed, 4 insertions, 0 deletions
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 */ |