Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Commit 7120317

Browse files
committed
Tiny adjustments…
1 parent 9093499 commit 7120317

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

keys.go

+7-9
Original file line numberDiff line numberDiff line change
@@ -65,26 +65,24 @@ func (s *KeysService) GetKeyWithUser(key int, options ...RequestOptionFunc) (*Ke
6565
return k, resp, nil
6666
}
6767

68-
// GetKeyWithUserByFingerprintOptions represents
69-
// the available GetKeyWithUserByFingerprint() options.
68+
// GetKeyByFingerprintOptions represents the available GetKeyByFingerprint()
69+
// options.
7070
//
7171
// GitLab API docs:
7272
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-fingerprint-of-ssh-key
7373
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-deploy-key-fingerprint
74-
type GetKeyWithUserByFingerprintOptions struct {
74+
type GetKeyByFingerprintOptions struct {
7575
Fingerprint string `url:"fingerprint" json:"fingerprint"`
7676
}
7777

78-
// GetKeyWithUserByFingerprint gets a specific SSH key or deploy key
79-
// by fingerprint along with the associated user information.
78+
// GetKeyByFingerprint gets a specific SSH key or deploy key by fingerprint
79+
// along with the associated user information.
8080
//
8181
// GitLab API docs:
8282
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-fingerprint-of-ssh-key
8383
// https://docs.gitlab.com/ee/api/keys.html#get-user-by-deploy-key-fingerprint
84-
func (s *KeysService) GetKeyWithUserByFingerprint(opt *GetKeyWithUserByFingerprintOptions, options ...RequestOptionFunc) (*Key, *Response, error) {
85-
u := "keys"
86-
87-
req, err := s.client.NewRequest(http.MethodGet, u, opt, options)
84+
func (s *KeysService) GetKeyByFingerprint(opt *GetKeyByFingerprintOptions, options ...RequestOptionFunc) (*Key, *Response, error) {
85+
req, err := s.client.NewRequest(http.MethodGet, "keys", opt, options)
8886
if err != nil {
8987
return nil, nil, err
9088
}

keys_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func TestGetKeyWithUser(t *testing.T) {
100100
}
101101
}
102102

103-
func TestGetKeyWithUserByFingerprint(t *testing.T) {
103+
func TestGetKeyByFingerprint(t *testing.T) {
104104
mux, client := setup(t)
105105

106106
mux.HandleFunc("/api/v4/keys",
@@ -143,7 +143,7 @@ func TestGetKeyWithUserByFingerprint(t *testing.T) {
143143
fmt.Fprint(w, `{}`)
144144
})
145145

146-
key, _, err := client.Keys.GetKeyWithUserByFingerprint(&GetKeyWithUserByFingerprintOptions{
146+
key, _, err := client.Keys.GetKeyByFingerprint(&GetKeyByFingerprintOptions{
147147
Fingerprint: "07:51:20:af:17:e4:a8:ab:22:79:9b:31:ae:a9:61:f3",
148148
})
149149
if err != nil {

0 commit comments

Comments
 (0)