mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 22:54:42 -04:00
Show only projects where user is creator, has project access >= 20, or has group access.
This commit is contained in:
parent
edcb766b63
commit
930afdc337
2 changed files with 9 additions and 2 deletions
|
@ -1164,7 +1164,10 @@ ui.toolbar.export.snippet.click(function() {
|
|||
return (a.path_with_namespace < b.path_with_namespace) ? -1 : ((a.path_with_namespace > b.path_with_namespace) ? 1 : 0);
|
||||
});
|
||||
data.projects.forEach(function(project) {
|
||||
if (!project.snippets_enabled) {
|
||||
if (!project.snippets_enabled
|
||||
|| (project.permissions.project_access === null && project.permissions.group_access === null)
|
||||
|| (project.permissions.project_access !== null && project.permissions.project_access.access_level < 20))
|
||||
{
|
||||
return;
|
||||
}
|
||||
$('<option>').val(project.id).text(project.path_with_namespace).appendTo("#snippetExportModalProjects");
|
||||
|
@ -1249,7 +1252,10 @@ ui.toolbar.import.snippet.click(function () {
|
|||
return (a.path_with_namespace < b.path_with_namespace) ? -1 : ((a.path_with_namespace > b.path_with_namespace) ? 1 : 0);
|
||||
});
|
||||
data.projects.forEach(function(project) {
|
||||
if (!project.snippets_enabled) {
|
||||
if (!project.snippets_enabled
|
||||
|| (project.permissions.project_access === null && project.permissions.group_access === null)
|
||||
|| (project.permissions.project_access !== null && project.permissions.project_access.access_level < 20))
|
||||
{
|
||||
return;
|
||||
}
|
||||
$('<option>').val(project.id).text(project.path_with_namespace).appendTo("#snippetImportModalProjects");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue