Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
devksingh4 committed Jul 20, 2023
1 parent 53ebe24 commit 8c8d128
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def getResumeUrl(context, queryParams):
"/api/v1/healthz": healthzHandler,
"/api/v1/student/getUploadURL": getUploadUrl,
"/api/v1/recruiter/getResumeUrl": getResumeUrl,
"/api/v1/recruiter/getResumeListings": notImplemented,
}
}

Expand Down
25 changes: 25 additions & 0 deletions docs/swagger-resume-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,31 @@ paths:
summary: Get resume listings based on criteria
operationId: recruiterGetResumeListings

responses:
200:
description: OK

security:
- CombinedAuthorizer: []

x-amazon-apigateway-auth:
type: NONE

x-amazon-apigateway-integration:
responses:
default:
statusCode: 200
passthroughBehavior: when_no_match
httpMethod: POST
contentHandling: CONVERT_TO_TEXT
type: aws_proxy
uri: arn:aws:apigateway:us-east-1:lambda:path/2015-03-31/functions/arn:aws:lambda:us-east-1:298118738376:function:infra-resume-book-api-lambda/invocations

/api/v1/recruiter/getResumeUrl:
get:
summary: Get resume URL for a specific uid
operationId: recruiterGetResumeUrl

responses:
200:
description: OK
Expand Down

0 comments on commit 8c8d128

Please sign in to comment.