mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-16 14:50:39 +00:00
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
ENSL.Gather = DS.Model.extend({
|
|
status: DS.attr(),
|
|
votes: DS.attr(),
|
|
turn: DS.attr(),
|
|
lastpick1: DS.attr(),
|
|
lastpick2: DS.attr(),
|
|
|
|
category: DS.belongsTo('category'),
|
|
gatherers: DS.hasMany('gatherer'),
|
|
gatherServers: DS.hasMany('gatherServer'),
|
|
gatherMaps: DS.hasMany('gatherMap')
|
|
});
|