-
-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix several issue for gitlab #74
Conversation
leonhartX
commented
Apr 9, 2018
- fix attach token for request
- remove OTP since it's not supported
- support to create/sync project(repo) under group(org)
- refactoring and formatting
}); | ||
}); | ||
}) | ||
.fail(err => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
‘err’ is defined but never used. |
}) | ||
}); | ||
}) | ||
.fail(err => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
‘err’ is defined but never used. |
this.namesToIds.groups = groups.reduce((obj, item) => (obj[item.name] = item.id, obj), {}); | ||
return this.namespaces; | ||
}) | ||
.catch((err) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
‘err’ is defined but never used. |
Generated by 🚫 Danger |
.catch((err) => { | ||
throw new Error('Failed to create new repository.'); | ||
}); | ||
.catch((err) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
‘err’ is defined but never used. |