diaspora/app/helpers/jsxc_helper.rb
2015-07-13 23:52:13 +02:00

12 lines
297 B
Ruby

module JsxcHelper
def get_bosh_endpoint
port = AppConfig.chat.server.bosh.port
bind = AppConfig.chat.server.bosh.bind
host = AppConfig.pod_uri.host
unless AppConfig.chat.server.bosh.proxy?
return "http://#{host}:#{port}#{bind}"
end
AppConfig.url_to bind
end
end