Skip to content

Instantly share code, notes, and snippets.

@kostia
Last active December 28, 2015 20:59
Show Gist options
  • Save kostia/7561398 to your computer and use it in GitHub Desktop.
Save kostia/7561398 to your computer and use it in GitHub Desktop.
module Customer
class BaseController < ApplicationController
# ...
before_filter :enable_live_notifications, only: [:waiter_home, :cook_home]
# ...
private
def enable_live_notifications
@live_notifications_channel = @venue.live_notifications_channel
end
end
end
<%# ... %>
<span data-live-notifications-channel="<%= @live_notifications_channel %>"></span>
$ ->
config = $('[data-live-notifications-channel'])
if config
channel = config.attr 'data-live-notifications-channel'
if channel
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment