From ebdc13cc43d03684aeef91c84f6b306c1b7653b1 Mon Sep 17 00:00:00 2001 From: Tobe O Date: Fri, 24 Feb 2017 07:33:17 -0500 Subject: [PATCH] Update auth.dart --- lib/src/routes/controllers/auth.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/routes/controllers/auth.dart b/lib/src/routes/controllers/auth.dart index 5d96a97..1cad74f 100644 --- a/lib/src/routes/controllers/auth.dart +++ b/lib/src/routes/controllers/auth.dart @@ -37,7 +37,7 @@ class AuthController extends Controller { } @Expose('/login', method: 'POST') - login(RequestContext req) async => auth.authenticate('local'); + login() async => auth.authenticate('local'); @Expose('/register', method: 'POST') register(RequestContext req, UserService userService) async {