-
Notifications
You must be signed in to change notification settings - Fork 24
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
409 whats new page #426
409 whats new page #426
Conversation
2. Add page to the router
2. Build logic for fetching, filtering and sorting pull requests from GitHub api
Hey @Valeri12580, I've got few points which i would like to mention.
Thank you for contributing to our project. You did a great job already. |
Hi @SponsoredByPuma, |
1.is_merged = false - sort the prs by the #number. 2.is_merged = true - sort the prs by the merged_date
1.is_merged = false - sort the prs by the #number. 2.is_merged = true - sort the prs by the merged_date
…ader. 2.Remove redundant variables. 3.Remove merget_at filter
Hello @Valeri12580, |
Hi @SponsoredByPuma, sorry for the delay, I will try to update it today |
# Conflicts: # frontend/src/locales/es.json # frontend/src/services/api.service.ts
# Conflicts: # frontend/src/components/navigation/TopNavigationBar.vue
…rojects' into 409-whats-new-page
# Conflicts: # frontend/src/components/navigation/TopNavigationBar.vue
PR regarding the 'What's New page milestone'.
One important thing
The code is making api calls to github rest api in order to get the pull requests. Unfortunately the request limit for unauthenticated users is 60 requests per hour. One possible fix is adding access token to the api requests which will increase the limit to 5000 requests per hour. I added property in application properties vsc.github.access-token = ${GITHUB_ACCESS_TOKEN:null} which will see if there are env variable containing the token and if yes - will use it.
You can find more here: https://docs.github.com/en/apps/creating-github-apps/registering-a-github-app/rate-limits-for-github-apps