No Job Token option in AsyncGitlab
Hi, the api does not contain any call in order to construct an AsyncGitlab
with the Auth::JobToken
.
A possible solution for this is to add a function like this in the GitlabBuilder
, as this builder can generate the AsyncGitlab
:
/// Switch to using a job token instead of a personal access token
pub fn job_token(&mut self) -> &mut Self {
if let Auth::Token(token) = self.token.clone() {
self.token = Auth::JobToken(token);
}
self
}
Another possible solution is to give the same methods from Gitlab
to AsyncGitlab
, but this will defeat the purpose of the GitlabBuilder
. The methods that I'm referring are the ones in the file src/gitlab.rs
, lines:
- 144:
pub fn new<H, T>(host: H, token: T) -> GitlabResult
- 161:
pub fn new_insecure<H, T>(host: H, token: T) -> GitlabResult
- 179:
pub fn new_job_token<H, T>(host: H, token: T) -> GitlabResult
- 197:
pub fn new_job_token_insecure<H, T>(host: H, token: T) -> GitlabResult
- 215:
pub fn with_oauth2<H, T>(host: H, token: T) -> GitlabResult
- 233:
pub fn with_oauth2_insecure<H, T>(host: H, token: T) -> GitlabResult
- 295:
pub fn builder<H, T>(host: H, token: T) -> GitlabBuilder
Thanks