6 lines
128 B
Ruby
6 lines
128 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::PollOptionSerializer < ActiveModel::Serializer
|
||
|
attributes :title, :votes_count
|
||
|
|
||
|
end
|