Skip to content
New issue

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

POST | Assign projects to students #142

Closed
3 tasks
Mu7ammadAbed opened this issue Jun 8, 2020 · 0 comments · Fixed by #143
Closed
3 tasks

POST | Assign projects to students #142

Mu7ammadAbed opened this issue Jun 8, 2020 · 0 comments · Fixed by #143

Comments

@Mu7ammadAbed
Copy link
Member

Route: POST api/v1/alumni/projects/assign

Acceptance Criteria

  • DB query

  • Response

  • Testing


DB query
 INSERT INTO student_project (student_id , project_id) VALUES (student_id , project_id);

Request body

req.body = {
studentId,
projectId,
}

Response
  • Success
{ StatusCode: 200,
  data: {studentId, projectId, message: "Added Successfully"}
}
  • Failed
{statusCode:400, message:"Invalid Data"}
Testing

Successful test if

  • statusCode === 200

#5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants