1# frozen_string_literal: true
2
3module API
4  module Entities
5    class SSHKey < Grape::Entity
6      expose :id, :title, :created_at, :expires_at
7      expose :publishable_key, as: :key
8    end
9  end
10end
11