mastodon/app/channels/application_cable/channel.rb

18 lines
547 B
Ruby
Raw Normal View History

2016-08-18 15:49:51 +02:00
module ApplicationCable
class Channel < ActionCable::Channel::Base
2016-11-05 15:20:05 +01: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 15:49:51 +02:00
end
end