Fix subscriptions:clear task, refactor feeds, refactor streamable activites
and atom feed generation to some extent, as well as the way mentions are stored
This commit is contained in:
parent
9594f0e858
commit
a08e724476
24 changed files with 219 additions and 234 deletions
11
app/lib/feed_manager.rb
Normal file
11
app/lib/feed_manager.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue