* Remove feature flag * Remove Pusher Beams implementation * Remove Pusher Beams require from initializer * Adds consumer apps to sidebar + consider :admin_restructure * Fix routes + PN target URL * Remove old file that sneaked in * Adds docs * docs tweaks * Apply suggestions from code review Co-authored-by: rhymes <rhymes@hey.com> Co-authored-by: rhymes <rhymes@hey.com>
8 lines
316 B
Ruby
8 lines
316 B
Ruby
if ApplicationConfig["PUSHER_APP_ID"].present?
|
|
Pusher.app_id = ApplicationConfig["PUSHER_APP_ID"]
|
|
Pusher.key = ApplicationConfig["PUSHER_KEY"]
|
|
Pusher.secret = ApplicationConfig["PUSHER_SECRET"]
|
|
Pusher.cluster = ApplicationConfig["PUSHER_CLUSTER"]
|
|
Pusher.logger = Rails.logger
|
|
Pusher.encrypted = true
|
|
end
|