diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-09 20:25:39 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-02-09 20:25:39 +0100 |
commit | 6331ed16e5953e3a006896c6df07b0f82cfd2350 (patch) | |
tree | b1b03e90ccb2feddc65aaf689808658381118228 /app/channels/timeline_channel.rb | |
parent | c424df5192f346dba5332a4b3a2de43b2f028e0c (diff) |
Fix #614 - extra reply-boolean on statuses to account for cases when replied-to
status is not in the system at time of distribution; fix #607 - reset privacy settings to defaults when cancelling replies
Diffstat (limited to 'app/channels/timeline_channel.rb')
-rw-r--r-- | app/channels/timeline_channel.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/app/channels/timeline_channel.rb b/app/channels/timeline_channel.rb deleted file mode 100644 index 7b8d63ef5..000000000 --- a/app/channels/timeline_channel.rb +++ /dev/null @@ -1,7 +0,0 @@ -# frozen_string_literal: true - -class TimelineChannel < ApplicationCable::Channel - def subscribed - stream_from "timeline:#{current_user.account_id}" - end -end |