Created
November 29, 2017 16:56
-
-
Save haberbyte/0749f3ae5e037bbc872f0df534ac2dfc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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