We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034f5ca commit 8cc240aCopy full SHA for 8cc240a
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gitlab-time-tracker",
3
- "version": "1.7.39",
+ "version": "1.7.40",
4
"description": "A command line interface for GitLabs time tracking feature.",
5
"bugs": {
6
"url": "https://github.com/kriskbx/gitlab-time-tracker/issues"
src/models/owner.js
@@ -123,8 +123,7 @@ class owner extends Base {
123
*/
124
getProjectsByGroup() {
125
return this.parallel(this.groups, (group, done) => {
126
- this.get(`groups/${group.id}/projects`)
127
- .then(response => response.json())
+ this.all(`groups/${group.id}/projects`)
128
.then(projects => {
129
this.projects = this.projects.concat(projects);
130
done();
0 commit comments