somleng/somleng

View on GitHub
app/channels/sms_gateway_connection_channel.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SMSGatewayConnectionChannel < ApplicationCable::Channel
  def subscribed
    stream_for(current_sms_gateway)
    ping
  end

  def ping
    current_sms_gateway.receive_ping
  end
end