Skip to content

Commit

Permalink
made client per node public
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushikeshnimkar committed Jun 11, 2024
1 parent c3a48b5 commit 61bb5ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/v1/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ func ApplyRoutes(r *gin.RouterGroup) {
g.GET("/clients", GetAllClients)
g.DELETE("/client/:uuid", DeleteClient)
// g.GET("/config/:region/:uuid", GetConfig)
g.GET("/clients/node/:nodeId", GetClientsByNode)
// g.GET("/clients/node/:nodeId", GetClientsByNode)
}
r.GET("/erebrus/clients/node/:nodeId", GetClientsByNode)
}
func RegisterClient(c *gin.Context) {
region_id := c.Param("regionId")
Expand Down

0 comments on commit 61bb5ee

Please sign in to comment.