diff options
author | Joas Schilling <coding@schilljs.com> | 2019-02-28 11:05:28 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2019-03-04 12:14:22 +0100 |
commit | c6a69ba92514587814d0f03b51e1d1f026a49350 (patch) | |
tree | b7162fff445ea0595280b535b95a60b689f742dd /apps/files/appinfo | |
parent | 814bf0de20b05ef44d4558d49cc3dc655da1c58d (diff) | |
download | nextcloud-server-c6a69ba92514587814d0f03b51e1d1f026a49350.tar.gz nextcloud-server-c6a69ba92514587814d0f03b51e1d1f026a49350.zip |
Remove the upload and memory setting
* Remove unneeded private method phpFileSize()
* Bump autoloader
* Remove setUploadLimit tests
* Remove integrity check hacks for upload limit
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/info.xml | 4 | ||||
-rw-r--r-- | apps/files/appinfo/routes.php | 5 |
2 files changed, 0 insertions, 9 deletions
diff --git a/apps/files/appinfo/info.xml b/apps/files/appinfo/info.xml index d6a0959eebe..79926afe83e 100644 --- a/apps/files/appinfo/info.xml +++ b/apps/files/appinfo/info.xml @@ -35,10 +35,6 @@ <command>OCA\Files\Command\ScanAppData</command> </commands> - <settings> - <admin>OCA\Files\Settings\Admin</admin> - </settings> - <activity> <settings> <setting>OCA\Files\Activity\Settings\FavoriteAction</setting> diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index 06806309cac..b085d79b8c8 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -77,11 +77,6 @@ $application->registerRoutes( 'verb' => 'GET', ], [ - 'name' => 'settings#setMaxUploadSize', - 'url' => '/settings/maxUpload', - 'verb' => 'POST', - ], - [ 'name' => 'ajax#getStorageStats', 'url' => '/ajax/getstoragestats.php', 'verb' => 'GET', |