##// END OF EJS Templates
js: add failure callbacks to ajax functions to allow custom...
js: add failure callbacks to ajax functions to allow custom behaviour on failed requests

File last commit:

r764:52c2b99a default
r1140:4a2f36ea default
Show More
plugin_init.html
16 lines | 561 B | text/html | HtmlLexer
notifications: support real-time notifications with websockets via channelstream
r526 <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>