Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ssh_key.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1554730cb6f9d69f9a9cc6451852ef63ff57e6c (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module API
  module Entities
    class SSHKey < Grape::Entity
      expose :id, :title, :created_at, :expires_at
      expose :publishable_key, as: :key
    end
  end
end