10 lines
150 B
Ruby
10 lines
150 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::CircleSerializer < ActiveModel::Serializer
|
||
|
attributes :id, :title
|
||
|
|
||
|
def id
|
||
|
object.id.to_s
|
||
|
end
|
||
|
end
|