func (gs GameService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { games := parentRoute.Group("/leagues/:leagueId/games") games.GET("", gs.getGames) games.POST("", mustBeAuthenticated(), gs.createGame) games.GET("/:gameId", gs.getGame) games.POST("/:gameId", mustBeAuthenticated(), gs.updateGame) }
func (cds contextDefinitionService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { contextRoute := parentRoute.Group("/context") contextRoute.GET("/prepare", mustBeAuthenticated(), cds.prepareNewContext) contextRoute.GET("/checkid/:id", mustBeAuthenticated(), cds.checkID) contextRoute.POST("", mustBeAuthenticated(), cds.saveContext) }
func (ls LeagueService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { leagues := parentRoute.Group("/leagues") leagues.GET("", ls.getLeagues) leagues.POST("", mustBeAuthenticated(), ls.createLeague) leagues.GET("/:leagueId", ls.getLeague) leagues.POST("/:leagueId", mustBeAuthenticated(), ls.updateLeague) }
func (ps PlayerService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { players := parentRoute.Group("/players") players.GET("", ps.getPlayers) players.POST("", mustBeAuthenticated(), ps.createPlayer) players.GET("/:playerId", ps.getPlayer) players.POST("/:playerId", mustBeAuthenticated(), ps.updatePlayer) }
func (as AdminService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { adminRoute := parentRoute.Group("/admin") importRoute := adminRoute.Group("/import") importRoute.GET("/preparescoreboardv1", mustBeAdmin(), as.prepareImportScoreBoardV1) importRoute.POST("/scoreboardv1", mustBeAdmin(), as.importScoreBoardV1) importRoute.GET("/scoreboardv1/status", mustBeAdmin(), as.importScoreBoardV1Status) tasksRoute := rootRoute.Group("/tasks") tasksRoute.POST("/import/scoreboardv1", as.doImportScoreBoardV1) }
func (cds ContextDefinitionService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { parentRoute.GET("/context", cds.getContext) }
func (us UserService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { parentRoute.GET("/me", us.getCurrentUser) parentRoute.GET("/login", us.startLoginProcess) }
func (us userService) CreateRoutes(parentRoute *gin.RouterGroup, rootRoute *gin.RouterGroup) { parentRoute.GET("/me", us.getCurrentUser) }