Chatwoot/app/models/concerns/pubsubable.rb

11 lines
217 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
2019-10-20 08:47:26 +00:00
# Used by the pusher/PubSub Service we use for real time communications
2019-10-16 22:18:48 +00:00
has_secure_token :pubsub_token
end
end