Skip to content

Commit

Permalink
Fix snake case inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gapidobri committed Nov 21, 2024
1 parent f22096f commit 8ba9703
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions internal/api/admin/draw_method.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ func (s *Server) drawMethodRoutes() {
// swagger:route GET /draw-methods admin drawMethods getDrawMethods
//
// parameters:
// + name: gameId
// + name: game_id
// in: query
// type: string
// + name: participationMethodId
// + name: participation_id
// in: query
// type: string
//
Expand Down
2 changes: 1 addition & 1 deletion internal/api/admin/participation_method.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (s *Server) participationMethodRoutes() {
// swagger:route GET /participation-methods admin participationMethods getParticipationMethods
//
// parameters:
// + name: gameId
// + name: game_id
// in: query
// type: string
//
Expand Down
2 changes: 1 addition & 1 deletion internal/api/admin/prize.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (s *Server) prizeRoutes() {
// swagger:route GET /prizes admin prizes getPrizes
//
// parameters:
// + name: gameId
// + name: game_id
// in: query
// type: string
//
Expand Down
2 changes: 1 addition & 1 deletion internal/api/admin/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (s *Server) userRoutes() {
// swagger:route GET /users admin users getUsers
//
// parameters:
// + name: gameId
// + name: game_id
// in: query
// type: string
//
Expand Down
6 changes: 3 additions & 3 deletions internal/api/admin/won_prize.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ func (s *Server) wonPrizeRoutes() {
// swagger:route GET /won-prizes admin wonPrizes getWonPrizes
//
// parameters:
// + name: gameId
// + name: game_id
// in: query
// type: string
// + name: userId
// + name: user_id
// in: query
// type: string
// + name: prizeId
// + name: prize_id
// in: query
// type: string
//
Expand Down

0 comments on commit 8ba9703

Please sign in to comment.