fix the gitlab plugin

This commit is contained in:
Andreas Zweili 2021-11-09 10:50:24 +01:00
parent 14fd8ac43d
commit 0712e57f79
1 changed files with 1 additions and 2 deletions

View File

@ -18,8 +18,7 @@ class GitlabAPI:
url = (self.url
+ 'issues?assignee_username='
+ assignee
+ '&state=opened')
print(url)
+ '&state=opened&scope=all')
response = requests.get(url, headers={'PRIVATE-TOKEN': self.token}, verify=False)
issues = response.json()