Chatwoot/app/models/concerns/pubsubable.rb

11 lines
222 B
Ruby
Raw Normal View History

2019-10-16 22:18:48 +00:00
# frozen_string_literal: true
module Pubsubable
extend ActiveSupport::Concern
included do
# Used by the actionCable/PubSub Service we use for real time communications
2019-10-16 22:18:48 +00:00
has_secure_token :pubsub_token
end
end