diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-12-04 19:14:41 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-12-04 19:14:41 +0530 |
commit | 8d85b0f87590b0941dfb2d8815aa2c7b7462a89f (patch) | |
tree | 9399f22b2c1a2850f8762da69da344f0fc830fba /invoice | |
parent | a6737e7f233c43c8222faabca991d8c666837c05 (diff) |
saving and checking refreshToken in DB
Diffstat (limited to 'invoice')
-rw-r--r-- | invoice/router.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/invoice/router.go b/invoice/router.go index ba6665f..37c3cd5 100644 --- a/invoice/router.go +++ b/invoice/router.go @@ -18,6 +18,7 @@ package invoice import ( + "github.com/MikunoNaka/OpenBills-server/auth" "github.com/gin-gonic/gin" "log" "errors" @@ -30,6 +31,7 @@ import ( func Routes(route *gin.Engine) { i := route.Group("/invoice") + i.Use(auth.Authorize()) { i.GET("/all", func(ctx *gin.Context) { // TODO: add functionality to filter results |