From 8d85b0f87590b0941dfb2d8815aa2c7b7462a89f Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 4 Dec 2022 19:14:41 +0530 Subject: saving and checking refreshToken in DB --- client/router.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'client') diff --git a/client/router.go b/client/router.go index 46e339a..0e5663b 100644 --- a/client/router.go +++ b/client/router.go @@ -18,6 +18,7 @@ package client import ( + "github.com/MikunoNaka/OpenBills-server/auth" "github.com/gin-gonic/gin" "log" "net/http" @@ -26,6 +27,7 @@ import ( func Routes(route *gin.Engine) { c := route.Group("/client") + c.Use(auth.Authorize()) { c.GET("/all", func(ctx *gin.Context) { // TODO: add functionality to filter results -- cgit v1.2.3