Girl-Code-It / Opportunity-Calendar-Backend

Opportunity Calendar is the one-stop place to refer important opportunities available in tech-space like newly posted jobs, internships, hackathons, tech-conferences, scholarships, etc.

Home Page:https://opportunity-calendar.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bug in pagination helper code

Sukriti-sood opened this issue · comments

In PAgination Helper Code :-

  • There are some unnecessary variable used
  • Logic for total pages is also wrong
    if (numDocs >= limit) { totalPages = Math.floor(numDocs / limit) + (numDocs % limit); }
  • It was not filtering Opportunities On the Basis of Opportunity-Type.

This issue has been resolve in PR of GET API TEST #97