From 9ebfea122c4ed8799327b870dee8a65138945534 Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Sun, 2 Jun 2024 19:54:04 -0700 Subject: [PATCH] fixed the route to pull sourceById --- internal/handler/v1/handler.go | 8 ++++---- internal/handler/v1/sources.go | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/handler/v1/handler.go b/internal/handler/v1/handler.go index 1e27f62..5953fba 100644 --- a/internal/handler/v1/handler.go +++ b/internal/handler/v1/handler.go @@ -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) diff --git a/internal/handler/v1/sources.go b/internal/handler/v1/sources.go index e7d7c68..ef994eb 100644 --- a/internal/handler/v1/sources.go +++ b/internal/handler/v1/sources.go @@ -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)