forked from ebhomengo/niki
fix(delivey): change StatusCreated to StatusOk where there is nothing created
This commit is contained in:
parent
5f43b90b2b
commit
47649e9952
|
@ -36,5 +36,5 @@ func (h Handler) Accept(c echo.Context) error {
|
|||
return echo.NewHTTPError(code, msg)
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusCreated, resp)
|
||||
return c.JSON(http.StatusOK, resp)
|
||||
}
|
||||
|
|
|
@ -32,5 +32,5 @@ func (h Handler) GetAll(c echo.Context) error {
|
|||
return echo.NewHTTPError(code, msg)
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusCreated, resp)
|
||||
return c.JSON(http.StatusOK, resp)
|
||||
}
|
||||
|
|
|
@ -36,5 +36,5 @@ func (h Handler) Reject(c echo.Context) error {
|
|||
return echo.NewHTTPError(code, msg)
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusCreated, resp)
|
||||
return c.JSON(http.StatusOK, resp)
|
||||
}
|
||||
|
|
|
@ -28,5 +28,5 @@ func (h Handler) Get(c echo.Context) error {
|
|||
return echo.NewHTTPError(code, msg)
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusCreated, resp)
|
||||
return c.JSON(http.StatusOK, resp)
|
||||
}
|
||||
|
|
|
@ -21,5 +21,5 @@ func (h Handler) GetAll(c echo.Context) error {
|
|||
return echo.NewHTTPError(code, msg)
|
||||
}
|
||||
|
||||
return c.JSON(http.StatusCreated, resp)
|
||||
return c.JSON(http.StatusOK, resp)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue