Skip to content
Snippets Groups Projects
Commit 42bc7b75 authored by Ronnie Friman's avatar Ronnie Friman
Browse files

add path for flag-events

parent 6683fa1b
No related branches found
No related tags found
3 merge requests!59Development to master,!58Development to testing,!55Flagbox replay
...@@ -86,6 +86,11 @@ export class GameController { ...@@ -86,6 +86,11 @@ export class GameController {
return this.gameservice.listFactions(id); return this.gameservice.listFactions(id);
} }
@Get('flag-events/:id')
async returnFlagboxInfo(@Param('id') id: GameEntity) {
return this.gameservice.returnObjectivePointInfo(id);
}
@Get('flag/:id') @Get('flag/:id')
async flagboxQuery(@Param('id') id: string) { async flagboxQuery(@Param('id') id: string) {
return this.gameservice.flagboxQuery(id); return this.gameservice.flagboxQuery(id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment