mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
9 lines
210 B
Ruby
9 lines
210 B
Ruby
|
class GatherSerializer < ApplicationSerializer
|
||
|
attributes :id, :status, :votes, :turn, :lastpick1, :lastpick2
|
||
|
|
||
|
has_one :category
|
||
|
has_many :gatherers
|
||
|
has_many :gather_servers
|
||
|
has_many :gather_maps
|
||
|
end
|