You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* @param id The ID of the SSH key
* @return The Key which includes the user who owns the key
* @throws GitLabApiException If anything goes wrong
*/
public Key getUserBySSHKeyId(Long id) throws GitLabApiException {
Response response = get(Response.Status.OK, null, "keys", id);
return response.readEntity(Key.class);
}
The text was updated successfully, but these errors were encountered:
In keysAPIS.java
Add API to get key by keyid, as from gitlab api docs
The text was updated successfully, but these errors were encountered: