refactor: rename pong to ping
This commit is contained in:
parent
2e3ec1408e
commit
4f891e067c
|
@ -264,7 +264,7 @@ func (a AccountAPI) passwordResetConfirm(jc jape.Context) {
|
|||
jc.ResponseWriter.WriteHeader(http.StatusOK)
|
||||
}
|
||||
|
||||
func (a AccountAPI) pong(jc jape.Context) {
|
||||
func (a AccountAPI) ping(jc jape.Context) {
|
||||
jc.Encode(&PongResponse{
|
||||
Ping: "pong",
|
||||
})
|
||||
|
@ -287,7 +287,7 @@ func (a AccountAPI) Routes() (*httprouter.Router, error) {
|
|||
})
|
||||
|
||||
routes := map[string]jape.Handler{
|
||||
"POST /api/auth/ping": middleware.ApplyMiddlewares(a.pong, authMw2fa, middleware.ProxyMiddleware),
|
||||
"POST /api/auth/ping": middleware.ApplyMiddlewares(a.ping, authMw2fa, middleware.ProxyMiddleware),
|
||||
"POST /api/auth/login": middleware.ApplyMiddlewares(a.login, authMw2fa, middleware.ProxyMiddleware),
|
||||
"POST /api/auth/register": middleware.ApplyMiddlewares(a.register, middleware.ProxyMiddleware),
|
||||
"POST /api/auth/verify-email": middleware.ApplyMiddlewares(a.verifyEmail, middleware.ProxyMiddleware),
|
||||
|
|
Loading…
Reference in New Issue