Skip to content

Instantly share code, notes, and snippets.

@haberbyte
Created November 29, 2017 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haberbyte/0749f3ae5e037bbc872f0df534ac2dfc to your computer and use it in GitHub Desktop.
Save haberbyte/0749f3ae5e037bbc872f0df534ac2dfc to your computer and use it in GitHub Desktop.
class ClaimBroadcastJob < ApplicationJob
queue_as :default
def perform(claim)
message = "#{claim.user.name} just claimed a desk!"
ActionCable.server.broadcast "activity_channel", user_id: claim.user.id, message: message
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment