Merge pull request #484 from travis-ci/te-dev
pass through Env.pusher.channelPrefix for enterprise
This commit is contained in:
commit
fa000b80c9
|
@ -59,6 +59,7 @@ run Travis::Web::App.build(
|
||||||
pusher_key: ENV['PUSHER_KEY'],
|
pusher_key: ENV['PUSHER_KEY'],
|
||||||
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
|
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
|
||||||
pusher_path: ENV['PUSHER_PATH'],
|
pusher_path: ENV['PUSHER_PATH'],
|
||||||
|
pusher_channel_prefix: ENV['PUSHER_CHANNEL_PREFIX'],
|
||||||
ga_code: ENV['GA_CODE'],
|
ga_code: ENV['GA_CODE'],
|
||||||
root: File.expand_path('../../dist', __FILE__),
|
root: File.expand_path('../../dist', __FILE__),
|
||||||
server_start: Time.now,
|
server_start: Time.now,
|
||||||
|
|
|
@ -189,6 +189,7 @@ class Travis::Web::App
|
||||||
pusher['key'] = options[:pusher_key] if options[:pusher_key]
|
pusher['key'] = options[:pusher_key] if options[:pusher_key]
|
||||||
pusher['host'] = options[:pusher_host] if options[:pusher_host]
|
pusher['host'] = options[:pusher_host] if options[:pusher_host]
|
||||||
pusher['path'] = options[:pusher_path] if options[:pusher_path]
|
pusher['path'] = options[:pusher_path] if options[:pusher_path]
|
||||||
|
pusher['channel_prefix'] = options[:pusher_channel_prefix] if options[:pusher_channel_prefix]
|
||||||
config['pusher'] = pusher
|
config['pusher'] = pusher
|
||||||
|
|
||||||
config['ember-cli-pendo'] = { apiKey: options[:pendo_key] }
|
config['ember-cli-pendo'] = { apiKey: options[:pendo_key] }
|
||||||
|
|
Loading…
Reference in New Issue
Block a user