summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/organization_user_keys_endpoint.rb
blob: afc09414ded8b879476210dfcd614869121586ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require_relative "../rest_base"

module ChefZero
  module Endpoints
    # GET /organizations/ORG/users/USER/keys
    class OrganizationUserKeysEndpoint < RestBase
      def get(request)
        # 404 if it doesn't exist
        get_data(request, request.rest_path[0..3])
        # Just use the /users/USER/keys/key endpoint
        original_path = request.rest_path
        request.rest_path = request.rest_path[2..-1]
        ActorKeysEndpoint.new(server).get(request, original_path)
      end
    end
  end
end