Add account to antenna webui

This commit is contained in:
KMY 2023-04-25 10:30:30 +09:00
parent 69df23d8d9
commit 0d5a6adc43
20 changed files with 644 additions and 1 deletions

View file

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