BigW Consortium Gitlab

keys.rb 394 Bytes
Newer Older
1 2 3 4 5 6
module API
  # Keys API
  class Keys < Grape::API
    before { authenticate! }

    resource :keys do
7 8 9
      desc 'Get single ssh key by id. Only available to admin users' do
        success Entities::SSHKeyWithUser
      end
10 11 12 13 14 15 16 17 18 19
      get ":id" do
        authenticated_as_admin!

        key = Key.find(params[:id])

        present key, with: Entities::SSHKeyWithUser
      end
    end
  end
end