diff options
author | Georg Ehrke <developer@georgehrke.com> | 2014-12-20 22:44:41 +0100 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2015-01-07 14:55:53 +0100 |
commit | f579f2bd948ca73a1af720e19517af9bdde11748 (patch) | |
tree | 08c7259d72d8db413895e215b774df83539a938c /settings/application.php | |
parent | 510488ad3e24110c435423860e9afbc58020ed66 (diff) | |
download | nextcloud-server-f579f2bd948ca73a1af720e19517af9bdde11748.tar.gz nextcloud-server-f579f2bd948ca73a1af720e19517af9bdde11748.zip |
add Download logfile button to admin settings
add logSettingsController
add download logfile button
move getEntries to LogSettingsController
move set log level to logsettingscontroller.php
add warning if logfile is bigger than 100MB
add unit test for set log level
fix typecasting, add new line at EoF
show log and logfile download only if log_type is set to owncloud
add unit test for getFilenameForDownload
Diffstat (limited to 'settings/application.php')
-rw-r--r-- | settings/application.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/settings/application.php b/settings/application.php index 74d021c5bf3..070da8024b2 100644 --- a/settings/application.php +++ b/settings/application.php @@ -12,6 +12,7 @@ namespace OC\Settings; use OC\Settings\Controller\AppSettingsController; use OC\Settings\Controller\GroupsController; +use OC\Settings\Controller\LogSettingsController; use OC\Settings\Controller\MailSettingsController; use OC\Settings\Controller\SecuritySettingsController; use OC\Settings\Controller\UsersController; @@ -91,6 +92,15 @@ class Application extends App { $c->query('URLGenerator') ); }); + $container->registerService('LogSettingsController', function(IContainer $c) { + return new LogSettingsController( + $c->query('AppName'), + $c->query('Request'), + $c->query('Config'), + $c->query('L10N'), + $c->query('TimeFactory') + ); + }); /** * Middleware |