Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeMaster482 committed Dec 13, 2023
1 parent 2dd1161 commit d9c0b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/api/init/router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func InitRouter(auth *auth.Handler,
authRouter.Methods("POST").Path("/checkAuth").HandlerFunc(auth.HealthCheck)
authRouter.Methods("POST").Path("/loginCheck").HandlerFunc(auth.CheckLoginUnique)
authRouter.Methods("POST").Path("/logout").HandlerFunc(auth.LogOut)
authRouter.Methods("PUTCH").Path("/password").HandlerFunc(auth.ChangePassword)
authRouter.Methods("PUT").Path("/password").HandlerFunc(auth.ChangePassword)
}

accountRouter := apiRouter.PathPrefix("/account").Subrouter()
Expand Down

0 comments on commit d9c0b1e

Please sign in to comment.