PixNyanNyan/PixNyanNyan-api

View on GitHub
app/channels/posts_channel.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PostsChannel < ApplicationCable::Channel
  def subscribed
    stream_from 'posts_channel'
  end
end