summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/organization_user_default_key_endpoint.rb
blob: 953edc1a661ee82571073e69f70d58c4f473d0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'chef_zero/rest_base'

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