2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2013-07-08 10:07:12 +02:00
|
|
|
class SpeakerSerializer < ActiveModel::Serializer
|
|
|
|
|
include ActionView::Helpers::TextHelper
|
2022-10-27 12:57:42 -07:00
|
|
|
include Rails.application.routes.url_helpers
|
2013-07-08 10:07:12 +02:00
|
|
|
|
2022-10-27 12:57:42 -07:00
|
|
|
attributes :url, :name, :affiliation, :biography
|
2013-07-08 10:07:12 +02:00
|
|
|
|
2017-05-21 21:02:30 +05:30
|
|
|
delegate :name, to: :object
|
2022-10-27 12:57:42 -07:00
|
|
|
|
|
|
|
|
def url
|
|
|
|
|
url_for(object)
|
|
|
|
|
end
|
2013-07-08 10:07:12 +02:00
|
|
|
end
|