osem-fcy/app/serializers/room_serializer.rb

11 lines
221 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-07-08 10:07:12 +02:00
class RoomSerializer < ActiveModel::Serializer
attributes :guid, :name, :description
# FIXME: just giving suseconferenceclient something to play with
def description
2014-06-24 12:14:53 +03:00
''
2013-07-08 10:07:12 +02:00
end
end