diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-30 09:58:02 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-09-30 10:21:08 +0200 |
commit | a1e4b17ff44cc4476574b8d335ac3fdf2c2dc561 (patch) | |
tree | 04629eb4b3a036b7e2a55a58f1bafd571ec6b50c /core/routes.php | |
parent | 877cb06bfed4524beb62e4cc52f946406ef7d5ea (diff) | |
download | nextcloud-server-a1e4b17ff44cc4476574b8d335ac3fdf2c2dc561.tar.gz nextcloud-server-a1e4b17ff44cc4476574b8d335ac3fdf2c2dc561.zip |
Remove unused endpoint
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/routes.php b/core/routes.php index b04b0db4ce7..337f6fb27c3 100644 --- a/core/routes.php +++ b/core/routes.php @@ -48,7 +48,6 @@ $application->registerRoutes($this, [ ['name' => 'login#tryLogin', 'url' => '/login', 'verb' => 'POST'], ['name' => 'login#showLoginForm', 'url' => '/login', 'verb' => 'GET'], ['name' => 'login#logout', 'url' => '/logout', 'verb' => 'GET'], - ['name' => 'token#generateToken', 'url' => '/token/generate', 'verb' => 'POST'], ['name' => 'TwoFactorChallenge#selectChallenge', 'url' => '/login/selectchallenge', 'verb' => 'GET'], ['name' => 'TwoFactorChallenge#showChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'GET'], ['name' => 'TwoFactorChallenge#solveChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'POST'], |