##// END OF EJS Templates
repo-permissions: add set/un-set of private repository from permissions page....
repo-permissions: add set/un-set of private repository from permissions page. - this adds consistent 1way of controlling all permissiosn from permissions page - properly flushses caches on this change - adds better UX

File last commit:

r4120:7cd93c2b default
r4189:021154b4 stable
Show More
pull_request_update.mako
26 lines | 707 B | application/x-mako | MakoHtmlLexer
## -*- coding: utf-8 -*-
Pull request updated. Auto status change to |under_review|
.. role:: added
.. role:: removed
.. parsed-literal::
Changed commits:
* :added:`${len(added_commits)} added`
* :removed:`${len(removed_commits)} removed`
%if not changed_files:
No file changes found
%else:
Changed files:
%for file_name in added_files:
* `A ${file_name} <#${'a_' + h.FID(ancestor_commit_id, file_name)}>`_
%endfor
%for file_name in modified_files:
* `M ${file_name} <#${'a_' + h.FID(ancestor_commit_id, file_name)}>`_
%endfor
%for file_name in removed_files:
* `R ${file_name}`
%endfor
%endif
.. |under_review| replace:: *"${under_review_label}"*