mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 00:43:15 +00:00
a08e724476
and atom feed generation to some extent, as well as the way mentions are stored
12 lines
247 B
Ruby
12 lines
247 B
Ruby
class FeedManager
|
|
MAX_ITEMS = 800
|
|
|
|
def self.key(type, id)
|
|
"feed:#{type}:#{id}"
|
|
end
|
|
|
|
def self.filter_status?(status, follower)
|
|
(status.reply? && !(follower.id = replied_to_user.id || follower.following?(replied_to_user)))
|
|
end
|
|
end
|