feat: remove login page (temp)

This commit is contained in:
Sonny
2024-11-05 22:27:17 +01:00
committed by Sonny
parent 41f82a8070
commit db578dbe51
10 changed files with 17 additions and 122 deletions

View File

@@ -9,8 +9,7 @@ const ROUTES_PREFIX = '/auth';
*/
router
.group(() => {
router.get('/login', [UsersController, 'login']).as('auth.login');
router.get('/google', [UsersController, 'google']).as('auth.google');
router.get('/google', [UsersController, 'google']).as('auth');
router
.get('/callback', [UsersController, 'callbackAuth'])
.as('auth.callback');