DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

4f6e95811e2bd1ce145f434b80dd3104972f8a30 — Jonni Liljamo 1 year, 8 months ago a41094c
docs(sdbapi): escape underscores in API doc
1 files changed, 3 insertions(+), 3 deletions(-)

M sdbapi/README.md
M sdbapi/README.md => sdbapi/README.md +3 -3
@@ 13,10 13,10 @@ Paths may change in the future.
| POST /user/register | register a user | public |
| POST /user/token | get the token of a user, aka login | public |
| GET /user/:id | get generic user info | public |
| GET /user/_/:id | get private user info | id owner |
| GET /user/\_/:id | get private user info | id owner |
|-|-|-|
| GET /game/:id | get game info | registered users (subject to change) |
| GET /game/all_forming | get all games that are forming | registered users |
| GET /game/all\_forming | get all games that are forming | registered users |
| POST /game/create | create a game | registered users |
| PATCH /game/:id/state | change the state of a game | only the game creator, aka P1 |
| GET /game/my_games | get all own games | derived from auth header |
| GET /game/my\_games | get all own games | derived from auth header |