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

GET cohorts/:cohortId | Route #19

Closed
3 tasks
rehabas opened this issue Mar 26, 2020 · 0 comments
Closed
3 tasks

GET cohorts/:cohortId | Route #19

rehabas opened this issue Mar 26, 2020 · 0 comments
Assignees

Comments

@rehabas
Copy link
Collaborator

rehabas commented Mar 26, 2020

relates #5

Route: GET api/v1/cohorts/:cohortId

Acceptance Criteria

  • DB query
  • Response
  • Testing

DB query

SELECT * FROM cohort WHERE id = cohortId;

Response

  • Success
{ StatusCode: 200,
  data: [{
          id,
          name,
          description,
          imgUrl,
          githubLink
        }]
}
  • Failed
{statusCode:400, message:"Sorry There's no cohort for this id"}

Testing

to be a successful test

  • status === 200
  • typeof(data) === "array"
  • data.length !== 0
@rehabas rehabas changed the title Cohorts/:cohortId | Route Get cohorts/:cohortId | Route Mar 26, 2020
@rehabas rehabas changed the title Get cohorts/:cohortId | Route GET cohorts/:cohortId | Route Mar 26, 2020
Mu7ammadAbed added a commit that referenced this issue Mar 28, 2020
I created query function which search for cohort based on id which came from params, and I created the necessary middleware for this function to work in addition to handling the required /cohort/:cohortid route

Relates #19
Mu7ammadAbed added a commit that referenced this issue Mar 28, 2020
I created query function which search for cohort based on id which came from params, and I created the necessary middleware for this function to work in addition to handling the required /cohort/:cohortid route

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

No branches or pull requests

3 participants