mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
Only pull projects the user owns.
This commit is contained in:
parent
0adc0864d5
commit
d6316a24c9
1 changed files with 1 additions and 1 deletions
2
app.js
2
app.js
|
@ -449,7 +449,7 @@ app.get('/gitlab', function (req, res) {
|
||||||
.then(function(user) {
|
.then(function(user) {
|
||||||
ret.accesstoken = user.accessToken;
|
ret.accesstoken = user.accessToken;
|
||||||
request(
|
request(
|
||||||
config.gitlab.baseURL + '/api/v3/projects?access_token=' + user.accessToken,
|
config.gitlab.baseURL + '/api/v3/projects/owned?access_token=' + user.accessToken,
|
||||||
function(error, httpResponse, body) {
|
function(error, httpResponse, body) {
|
||||||
if (!error && httpResponse.statusCode == 200) {
|
if (!error && httpResponse.statusCode == 200) {
|
||||||
ret.projects = JSON.parse(body);
|
ret.projects = JSON.parse(body);
|
||||||
|
|
Loading…
Reference in a new issue