discourse/app/serializers/topic_link_serializer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
511 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 13:16:51 -06:00
class TopicLinkSerializer < ApplicationSerializer
2013-02-25 10:42:20 -06:00
attributes :url,
:title,
# :fancy_title,
2013-02-25 10:42:20 -06:00
:internal,
:attachment,
2013-02-25 10:42:20 -06:00
:reflection,
:clicks,
2014-04-05 13:47:25 -05:00
:user_id,
:domain,
:root_domain
def attachment
Discourse.store.has_been_uploaded?(object.url)
end
2013-02-19 15:08:23 -06:00
2013-02-05 13:16:51 -06:00
def include_user_id?
object.user_id.present?
2014-04-05 13:47:25 -05:00
end
def root_domain
MiniSuffix.domain(domain)
end
2013-02-07 09:45:24 -06:00
end