mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-21 19:25:58 +10:00
26 lines
278 B
Ruby
26 lines
278 B
Ruby
class EMSourceSerializer < ActiveModel::Serializer
|
|
include Rails.application.routes.url_helpers
|
|
|
|
attributes :id, :title, :img, :description, :source_type,
|
|
|
|
def title
|
|
|
|
end
|
|
|
|
def img
|
|
|
|
end
|
|
|
|
def description
|
|
|
|
end
|
|
|
|
def source_url
|
|
|
|
end
|
|
|
|
def source_type
|
|
|
|
end
|
|
|
|
end |