diff options
author | Joas Schilling <coding@schilljs.com> | 2020-04-14 18:24:02 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-04-18 11:21:28 +0200 |
commit | 708b4991d9039543130b569dd845ed8d8cd1a68c (patch) | |
tree | 9f62b0021496c92448b3697162b8a32ff974a6e5 /apps/files_external/appinfo | |
parent | 250467e842a0856a84e9962ed6ef476a2e3ccfef (diff) | |
download | nextcloud-server-708b4991d9039543130b569dd845ed8d8cd1a68c.tar.gz nextcloud-server-708b4991d9039543130b569dd845ed8d8cd1a68c.zip |
Fix legacy routes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files_external/appinfo')
-rw-r--r-- | apps/files_external/appinfo/routes.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_external/appinfo/routes.php b/apps/files_external/appinfo/routes.php index c504110210b..17484594a45 100644 --- a/apps/files_external/appinfo/routes.php +++ b/apps/files_external/appinfo/routes.php @@ -60,11 +60,11 @@ ] ); -$this->create('files_external_oauth1', 'ajax/oauth1.php') +$this->create('files_external_oauth1', 'apps/files_external/ajax/oauth1.php') ->actionInclude('files_external/ajax/oauth1.php'); -$this->create('files_external_oauth2', 'ajax/oauth2.php') +$this->create('files_external_oauth2', 'apps/files_external/ajax/oauth2.php') ->actionInclude('files_external/ajax/oauth2.php'); -$this->create('files_external_list_applicable', '/applicable') +$this->create('files_external_list_applicable', '/apps/files_external/applicable') ->actionInclude('files_external/ajax/applicable.php'); |