aboutsummaryrefslogtreecommitdiff
path: root/auth/controller.go
diff options
context:
space:
mode:
Diffstat (limited to 'auth/controller.go')
-rw-r--r--auth/controller.go10
1 files changed, 7 insertions, 3 deletions
diff --git a/auth/controller.go b/auth/controller.go
index 277a85a..1e6f7fe 100644
--- a/auth/controller.go
+++ b/auth/controller.go
@@ -25,6 +25,7 @@ import (
"vidhukant.com/openbills/user"
"net/http"
"time"
+ "fmt"
)
var (
@@ -68,12 +69,15 @@ func handleSignUp (ctx *gin.Context) {
}
func handleSignIn (ctx *gin.Context) {
- var u user.User
- ctx.Bind(&u)
+ var req LoginReq
+ ctx.Bind(&req)
+
+ fmt.Println(req)
var err error
+ var u user.User
- err = user.CheckPassword(u.ID, u.Password)
+ err = user.CheckPassword(&u, req.AccountName, req.Method, req.Password)
if err != nil {
// TODO: handle potential errors
ctx.Error(err)