diff options
author | Jason Croft | 2016-05-13 10:32:30 -0400 |
---|---|---|
committer | Jason Croft | 2016-05-13 10:32:30 -0400 |
commit | 930afdc33738a487bd9e596c5d35bc9f686eaaa1 (patch) | |
tree | ecda84def1316dfe03251571a85ee9a02ea51cb0 | |
parent | edcb766b63694948b91094995ca7720c1ea222c3 (diff) |
Show only projects where user is creator, has project access >= 20, or has group access.
Diffstat (limited to '')
-rw-r--r-- | app.js | 1 | ||||
-rw-r--r-- | public/js/index.js | 10 |
2 files changed, 9 insertions, 2 deletions
@@ -448,6 +448,7 @@ app.get('/gitlab', function (req, res) { models.User.findById(req.cookies.userid) .then(function(user) { ret.accesstoken = user.accessToken; + ret.profileid = user.profileid; request( config.gitlab.baseURL + '/api/v3/projects?access_token=' + user.accessToken, function(error, httpResponse, body) { diff --git a/public/js/index.js b/public/js/index.js index a1e0445b..7e692bee 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -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"); |