Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abaldeweg authored Oct 23, 2024
1 parent dc7af43 commit 8fba379
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gateway/router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ func Routes() *gin.Engine {
apiCoreInventory.DELETE(`/:id`, handleCoreAPIWithId("/apis/core/1/api/inventory"))
}

apiCore.GET(`/api/me`, handleCoreAPI("/apis/core/1/api/me"))
apiCore.PUT(`/api/password`, handleCoreAPI("/apis/core/1/api/password"))
apiCore.GET(`/api/me`, handleCoreAPI("apis/core/1/api/me"))
apiCore.GET(`/api/login_check`, handleCoreAPI("apis/core/1/api/login_check"))
apiCore.PUT(`/api/password`, handleCoreAPI("apis/core/1/api/password"))

apiCorePublic := apiCore.Group(`/api/public`)
{
Expand Down

0 comments on commit 8fba379

Please sign in to comment.