Files
gitlab-foss/lib/api/entities/ssh_key.rb
2020-02-08 03:08:47 +00:00

10 lines
155 B
Ruby

# frozen_string_literal: true
module API
module Entities
class SSHKey < Grape::Entity
expose :id, :title, :key, :created_at
end
end
end