Goal
- Create the create and update json endpoints for the game session
Context
The game session state comes from the games themselves rather than our app, so we need to expose these endpoints as json rather than traditional endpoints.
AC
- A game session create endpoint that accepts json is created
- A game session requires a game slug, and a student id to be created
- This endpoint returns the game session's id in its response
- A game session update endpoint that accepts json is created
- This endpoint accepts a score
Goal
Context
The game session state comes from the games themselves rather than our app, so we need to expose these endpoints as json rather than traditional endpoints.
AC