mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 05:15:53 +10:00
14 lines
198 B
Ruby
14 lines
198 B
Ruby
class ArticleSerializer < ActiveModel::Serializer
|
|
|
|
attributes :id, :viewed_times, :title, :url
|
|
|
|
def title
|
|
object.try(:name)
|
|
end
|
|
|
|
def view_account
|
|
object.viewed_times || 0
|
|
end
|
|
|
|
end
|