Sha256: cafbb0d18f72da36cbafdf0cca25b5a01e7939896a56d5ba9a04778641550f86
Contents?: true
Size: 381 Bytes
Versions: 15
Compression:
Stored size: 381 Bytes
Contents
# frozen_string_literal: true class Gitlab::Client # Defines methods related to keys. # @see https://docs.gitlab.com/ce/api/keys.html module Keys # Gets information about a key. # # @example # Gitlab.key(1) # # @param [Integer] id The ID of a key. # @return [Gitlab::ObjectifiedHash] def key(id) get("/keys/#{id}") end end end
Version data entries
15 entries across 15 versions & 1 rubygems