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 c1706daCopy full SHA for c1706da
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