diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-06-21 16:44:37 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-06-21 16:44:37 +0200 |
commit | c7931086cc557211073540cf13e2af4c5afaaad3 (patch) | |
tree | b4c4c946004ecb869de1497bb2f5f0d5db82e57b /apps/files/appinfo | |
parent | dbc2c2325ea194b4588515e5fad988b7ab9bcf3f (diff) | |
download | nextcloud-server-c7931086cc557211073540cf13e2af4c5afaaad3.tar.gz nextcloud-server-c7931086cc557211073540cf13e2af4c5afaaad3.zip |
Remove .php from url
Probably here for legacy reasons, but it is a bit weird to call an .php
endpoint that doesn't correspond to a .php file
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/routes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index a98170363e9..2aeef05558c 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -99,7 +99,7 @@ $application->registerRoutes( ], [ 'name' => 'ajax#getStorageStats', - 'url' => '/ajax/getstoragestats.php', + 'url' => '/ajax/getstoragestats', 'verb' => 'GET', ], [ |