22 lines
502 B
Ruby
22 lines
502 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: rooms
|
|
#
|
|
# id :bigint not null, primary key
|
|
# guid :string not null
|
|
# name :string not null
|
|
# order :integer
|
|
# size :integer
|
|
# url :string
|
|
# venue_id :integer not null
|
|
#
|
|
class RoomSerializer < ActiveModel::Serializer
|
|
attributes :guid, :name, :description
|
|
|
|
# FIXME: just giving suseconferenceclient something to play with
|
|
def description
|
|
''
|
|
end
|
|
end
|