osem-fcy/app/serializers/speaker_serializer.rb

8 lines
173 B
Ruby
Raw Normal View History

2013-07-08 10:07:12 +02:00
class SpeakerSerializer < ActiveModel::Serializer
include ActionView::Helpers::TextHelper
2014-08-27 16:18:35 +02:00
attributes :name, :affiliation, :biography
2013-07-08 10:07:12 +02:00
2017-05-21 21:02:30 +05:30
delegate :name, to: :object
2013-07-08 10:07:12 +02:00
end