We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a judge, I need to be able to review a submission.
To enable this, we need to implement the following endpoint:
POST /reviews
body: { review: { submissionId: `UUID HERE` status: `APPROVED || REJECTED` comment: `text` } }
Add this endpoint to the router here: config/express/router.ts
config/express/router.ts
This endpoint should evoke the create method on the reviews service: app/challenges-platform/services/reviews-service.ts
create
app/challenges-platform/services/reviews-service.ts
The text was updated successfully, but these errors were encountered:
MrRibcage
Successfully merging a pull request may close this issue.
As a judge, I need to be able to review a submission.
To enable this, we need to implement the following endpoint:
POST /reviews
Add this endpoint to the router here:
config/express/router.ts
This endpoint should evoke the
create
method on the reviews service:app/challenges-platform/services/reviews-service.ts
The text was updated successfully, but these errors were encountered: