summaryrefslogtreecommitdiff
path: root/lib/api/entities/ssh_key.rb
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