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

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

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

export const gameList = [ game ]
bgstack15