9 lines
151 B
Ruby
9 lines
151 B
Ruby
class TeamSerializer < ActiveModel::Serializer
|
|
include ColorHelper
|
|
|
|
attributes :id, :name, :color
|
|
|
|
def color
|
|
team_color(object.id)
|
|
end
|
|
end |