Add circle editor

This commit is contained in:
KMY 2023-08-21 16:37:35 +09:00
parent c97e63bb18
commit b0854b1dd8
33 changed files with 1671 additions and 31 deletions

View file

@ -0,0 +1,9 @@
# frozen_string_literal: true
class REST::CircleSerializer < ActiveModel::Serializer
attributes :id, :title
def id
object.id.to_s
end
end