diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-01-23 17:45:45 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-01-27 13:23:19 +0100 |
commit | 9fbeaf0fd9f3ba4cd01aa566553cb2373dde8cb2 (patch) | |
tree | 183f374f0021c680fffd95238457c16af071da45 /settings/application.php | |
parent | 5da4071c4553b5ee64799856e4db58e9484d9839 (diff) | |
download | nextcloud-server-9fbeaf0fd9f3ba4cd01aa566553cb2373dde8cb2.tar.gz nextcloud-server-9fbeaf0fd9f3ba4cd01aa566553cb2373dde8cb2.zip |
Add value if restore of data is possible for a user
* reason: nice to know before password change in user management
* restore is possible:
* encryption is disabled
* encryption is enabled, admin and user has checked the
restore option
* if not possible:
* highlight users row in red once the admin wants to change the password
* show also a little tipsy
Diffstat (limited to 'settings/application.php')
-rw-r--r-- | settings/application.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/application.php b/settings/application.php index f7ba72f3bfc..d5516a1eefd 100644 --- a/settings/application.php +++ b/settings/application.php @@ -90,7 +90,8 @@ class Application extends App { $c->query('Defaults'), $c->query('Mail'), $c->query('DefaultMailAddress'), - $c->query('URLGenerator') + $c->query('URLGenerator'), + $c->query('OCP\\App\\IAppManager') ); }); $container->registerService('LogSettingsController', function(IContainer $c) { |