summaryrefslogtreecommitdiff
path: root/frontend/src/schemas/games.js
blob: 180c9e69b3e59ec830bb47cbc9397c842c4b1eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
import { schema } from 'normalizr'

const player = new schema.Entity('players', {}, {
  idAttribute: 'username'
})

const game = new schema.Entity('games', {
  players: [ player ]
})

export default [ game ]
bgstack15