mirror of
https://github.com/FJurmanovic/wallet-go-api.git
synced 2026-02-06 06:08:16 +00:00
removed Auth middleware from Api controller
This commit is contained in:
@@ -13,7 +13,7 @@ import (
|
|||||||
func Routes(s *gin.Engine, db *pg.DB) {
|
func Routes(s *gin.Engine, db *pg.DB) {
|
||||||
ver := s.Group(configs.Prefix)
|
ver := s.Group(configs.Prefix)
|
||||||
|
|
||||||
api := ver.Group("api", middleware.Auth)
|
api := ver.Group("api")
|
||||||
auth := ver.Group("auth")
|
auth := ver.Group("auth")
|
||||||
wallet := ver.Group("wallet", middleware.Auth)
|
wallet := ver.Group("wallet", middleware.Auth)
|
||||||
transaction := ver.Group("transaction", middleware.Auth)
|
transaction := ver.Group("transaction", middleware.Auth)
|
||||||
|
|||||||
Reference in New Issue
Block a user