9 lines
168 B
Ruby
9 lines
168 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
class SSHKey < Grape::Entity
|
|
expose :id, :title, :key, :created_at, :expires_at
|
|
end
|
|
end
|
|
end
|