##// END OF EJS Templates
users: added option to detach pull requests for users which we delete....
users: added option to detach pull requests for users which we delete. - as bonus added ability to specify new owner via ?detach_user_id=NUM GET param.

File last commit:

r4291:a3f90209 default
r4351:2d86851b default
Show More
plugin_init.mako
18 lines | 635 B | application/x-mako | MakoHtmlLexer
<%page args="config"/>
<script>
var CHANNELSTREAM_URLS = ${config['url_gen'](request)|n};
%if request.registry.rhodecode_plugins['channelstream']['enabled'] and getattr(c.rhodecode_user, 'username', '') != h.DEFAULT_USER:
var CHANNELSTREAM_SETTINGS = {
'enabled': true,
'ws_location': '${request.registry.settings.get('channelstream.ws_url')}',
'webapp_location': '${h.route_url('home').rstrip('/')}'
};
%else:
var CHANNELSTREAM_SETTINGS = {
'enabled':false,
'ws_location': '',
'webapp_location': '${h.route_url('home').rstrip('/')}'
};
%endif
</script>