Project API namespace escaping
Opened this issue · 0 comments
ns3777k commented
https://github.com/plouc/go-gitlab-client/blob/master/projects.go#L74
It says project path (namespace + project name) has to be passed with delimiter escaped (/
=> %2F
), but we can do that automatically with QueryEscape
from net/url
.
Can make a PR.