stable

Clone or download

Read-only

Add load more button for SVN service

this is part of story #10064 Display permissions per group How to test: A button is present to see repositories permissions, if project has no repositories, an empty state is displayed if project has repositories, repository name is clickable and should redirect you to the SVNAccessFile of repository Change-Id: Iae99d328dae25241c9cebdb7bdd3a9e296480836

Modified Files

Name
M plugins/agiledashboard/www/js/permissions-per-group/po/fr.po +1 −0 Go to diff View file
M plugins/svn/build-manifest.json +9 −0 Go to diff View file
M plugins/svn/include/Svn/PerGroup/PaneCollector.php +3 −33 Go to diff View file
A plugins/svn/include/Svn/PerGroup/PermissionPerGroupRepositoriesRepresentation.php +34 −0 Go to diff View file
A plugins/svn/include/Svn/PerGroup/PermissionPerGroupRepositoryRepresentation.php +39 −0 Go to diff View file
R plugins/svn/include/Svn/PerGroup/PermissionPerGroupRepositoryPaneBuilder.php Go to diff View file
M plugins/svn/include/Svn/PerGroup/PermissionPerGroupSVNServicePaneBuilder.php +16 −3 Go to diff View file
R plugins/svn/include/Svn/PerGroup/GlobalPresenter.php Go to diff View file
A plugins/svn/include/Svn/PerGroup/SVNJSONPermissionsRetriever.php +56 −0 Go to diff View file
M plugins/svn/include/Svn/SvnRouter.class.php +23 −2 Go to diff View file
M plugins/svn/include/autoload.php +7 −4 Go to diff View file
M plugins/svn/include/svnPlugin.class.php +31 −9 Go to diff View file
M plugins/svn/site-content/fr_FR/LC_MESSAGES/tuleap-svn.po +6 −9 Go to diff View file
M plugins/svn/site-content/tuleap-svn.pot +6 −9 Go to diff View file
M plugins/svn/templates/project-admin-permission-per-group.mustache +35 −63 Go to diff View file
A plugins/svn/www/scripts/package-lock.json +4476 −0 Go to diff View file
A plugins/svn/www/scripts/package.json +28 −0 Go to diff View file
A plugins/svn/www/scripts/permissions-per-group/po/fr.po +25 −0 Go to diff View file
A plugins/svn/www/scripts/permissions-per-group/po/template.pot +11 −0 Go to diff View file
A plugins/svn/www/scripts/permissions-per-group/src/SVNPermissions.vue +107 −0 Go to diff View file
A plugins/svn/www/scripts/permissions-per-group/src/gettext-provider.js +27 −0 Go to diff View file
A plugins/svn/www/scripts/permissions-per-group/src/index.js +34 −0 Go to diff View file
A plugins/svn/www/scripts/permissions-per-group/src/rest-querier.js +32 −0 Go to diff View file
A plugins/svn/www/scripts/webpack.config.js +125 −0 Go to diff View file