Skip to content

Commit

Permalink
fix dish route for new socket
Browse files Browse the repository at this point in the history
  • Loading branch information
krustowski committed Aug 22, 2023
1 parent f1b18e4 commit 7e8faa9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

APP_NAME=swis-api
APP_ROOT=/opt/${APP_NAME}
APP_VERSION=5.5.14
APP_VERSION=5.5.15


#
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ go.work
swis
swis-api
swapi
.demo/*
2 changes: 1 addition & 1 deletion dish/routes.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ func Routes(g *gin.RouterGroup) {
GetSocketList)
g.GET("/sockets/:host",
GetSocketListByHost)
g.POST("/sockets",
g.POST("/sockets/:key",
PostNewSocketByKey)
g.PUT("/sockets/:key",
UpdateSocketByKey)
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @title swis-api (swapi) v5
// @version 5.5.14
// @version 5.5.15
// @description sakalWeb Information System v5 RESTful API documentation
// @termsOfService http://swagger.io/terms/

Expand Down

0 comments on commit 7e8faa9

Please sign in to comment.