mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
31 lines
665 B
Ruby
31 lines
665 B
Ruby
class PermalinkSerializer < ApplicationSerializer
|
|
attributes :id, :url, :topic_id, :topic_title, :topic_url, :post_id, :post_url, :post_number, :post_topic_title, :category_id, :category_name, :category_url, :external_url
|
|
|
|
def topic_title
|
|
object.try(:topic).try(:title)
|
|
end
|
|
|
|
def topic_url
|
|
object.try(:topic).try(:url)
|
|
end
|
|
|
|
def post_url
|
|
object.try(:post).try(:url)
|
|
end
|
|
|
|
def post_number
|
|
object.try(:post).try(:post_number)
|
|
end
|
|
|
|
def post_topic_title
|
|
object.try(:post).try(:topic).try(:title)
|
|
end
|
|
|
|
def category_name
|
|
object.try(:category).try(:name)
|
|
end
|
|
|
|
def category_url
|
|
object.try(:category).try(:url)
|
|
end
|
|
end
|