##// END OF EJS Templates
fix(permissions): Invalidate cache on changing the default permissions...
fix(permissions): Invalidate cache on changing the default permissions In case of change of global permissions the logic there can change the scope of permissions so much that we need to run a full permissions flush. This fixes #5700, and fixes #5701

File last commit:

r3755:2e97cecb new-ui
r5186:76f12b03 default
Show More
file_content.mako
9 lines | 261 B | application/x-mako | MakoHtmlLexer
<%namespace name="sourceblock" file="/codeblocks/source.mako"/>
<%def name="render_lines(lines)">
<table class="cb codehilite">
%for line_num, tokens in enumerate(lines, 1):
${sourceblock.render_line(line_num, tokens)}
%endfor
</table>
</%def>