##// END OF EJS Templates
Added tag v4.9.1 for changeset d9aa3b27ac9f
Added tag v4.9.1 for changeset d9aa3b27ac9f

File last commit:

r2103:c8a23404 default
r2201:ef4a80b9 stable
Show More
plugin_init.mako
16 lines | 561 B | application/x-mako | MakoHtmlLexer
<script>
var CHANNELSTREAM_URLS = ${config['url_gen'](request)|n};
%if request.registry.rhodecode_plugins['channelstream']['enabled'] and c.rhodecode_user.username != h.DEFAULT_USER:
var CHANNELSTREAM_SETTINGS = {
'enabled': true,
'ws_location': '${request.registry.settings.get('channelstream.ws_url')}',
'webapp_location': '${h.url('/', qualified=True)[:-1]}'
};
%else:
var CHANNELSTREAM_SETTINGS = {
'enabled':false,
'ws_location': '',
'webapp_location': ''};
%endif
</script>