fixed the route to pull sourceById

This commit is contained in:
James Tombleson 2024-06-02 19:54:04 -07:00
parent 9237369e5a
commit 9ebfea122c
2 changed files with 6 additions and 6 deletions

View File

@ -95,10 +95,10 @@ func NewServer(ctx context.Context, configs services.Configs, conn *sql.DB) *Han
//sources.POST("/new/youtube", s.newYoutubeSource)
//sources.POST("/new/twitch", s.newTwitchSource)
sources.POST("/new/rss", s.newRssSource)
sources.GET("/:ID/", s.getSource)
sources.DELETE("/:ID/", s.deleteSources)
sources.POST("/:ID/disable", s.disableSource)
sources.POST("/:ID/enable", s.enableSource)
sources.GET("/:id", s.getSource)
sources.DELETE("/:id", s.deleteSources)
sources.POST("/:id/disable", s.disableSource)
sources.POST("/:id/enable", s.enableSource)
users := v1.Group("/users")
users.POST("/login", s.AuthLogin)

View File

@ -101,7 +101,7 @@ func (s *Handler) listSourcesBySource(c echo.Context) error {
// GetSource
// @Summary Returns a single entity by ID
// @Param id path int true "uuid"
// @Param id path int true "id"
// @Produce application/json
// @Tags Source
// @Router /v1/sources/{id} [get]
@ -122,7 +122,7 @@ func (s *Handler) getSource(c echo.Context) error {
return c.JSON(http.StatusUnauthorized, p)
}
id, err := strconv.Atoi(c.Param("ID"))
id, err := strconv.Atoi(c.Param("id"))
if err != nil {
p.BaseResponse.Message = err.Error()
return c.JSON(http.StatusBadRequest, p)