diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-08 23:31:26 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-09 18:05:09 +0200 |
commit | ceeb44bd04f2606bea4c94107850157719127581 (patch) | |
tree | 7ecb64a3ca929a7b3a721cfed65c65bf0c61831d /lib/private/Installer.php | |
parent | edeb41ccaff186b116852df4caf8df144db682c8 (diff) | |
download | nextcloud-server-ceeb44bd04f2606bea4c94107850157719127581.tar.gz nextcloud-server-ceeb44bd04f2606bea4c94107850157719127581.zip |
Initial work on Apps page split:
* interfaces for the Admin settings (IAdmin) and section (ISection)
* SettingsManager service
* example setup with LDAP app
Diffstat (limited to 'lib/private/Installer.php')
-rw-r--r-- | lib/private/Installer.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Installer.php b/lib/private/Installer.php index eed97e18d94..a4300785002 100644 --- a/lib/private/Installer.php +++ b/lib/private/Installer.php @@ -135,6 +135,7 @@ class Installer { } \OC_App::setupBackgroundJobs($info['background-jobs']); + \OC::$server->getSettingsManager()->setupSettings($info['settings']); //run appinfo/install.php if((!isset($data['noinstall']) or $data['noinstall']==false)) { |