1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/channels/application_cable/channel.rb

18 lines
547 B
Ruby
Raw Normal View History

2016-08-18 06:49:51 -07:00
module ApplicationCable
class Channel < ActionCable::Channel::Base
2016-11-05 07:20:05 -07:00
protected
def hydrate_status(encoded_message)
message = ActiveSupport::JSON.decode(encoded_message)
status = Status.find_by(id: message['id'])
message['message'] = FeedManager.instance.inline_render(current_user.account, status)
[status, message]
end
def filter?(status)
status.nil? || current_user.account.blocking?(status.account) || (status.reblog? && current_user.account.blocking?(status.reblog.account))
end
2016-08-18 06:49:51 -07:00
end
end