mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
14 lines
325 B
Ruby
14 lines
325 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HashtagChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
tag = params[:tag].downcase
|
|
|
|
stream_from "timeline:hashtag:#{tag}", lambda { |encoded_message|
|
|
status, message = hydrate_status(encoded_message)
|
|
next if filter?(status)
|
|
transmit message
|
|
}
|
|
end
|
|
end
|