##// END OF EJS Templates
user-groups: fix potential problem with group sync of external plugins....
user-groups: fix potential problem with group sync of external plugins. - when using external plugin we used to check for a parameter that set the sync mode. The problem is we only checked if the flag was there. So toggling sync on and off set the value and then left the key still set but with None. This confused the sync and thought the group should be synced !

File last commit:

r2103:c8a23404 default
r2143:4314e88b default
Show More
plugin_init.mako
17 lines | 596 B | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282 <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')}',
routing: removed more usage of pylons url() objects.
r2103 'webapp_location': '${h.route_url('home').rstrip('/')}'
templating: use .mako as extensions for template files.
r1282 };
%else:
var CHANNELSTREAM_SETTINGS = {
'enabled':false,
'ws_location': '',
routing: removed more usage of pylons url() objects.
r2103 'webapp_location': '${h.route_url('home').rstrip('/')}'
};
templating: use .mako as extensions for template files.
r1282 %endif
</script>