UKnowWhoIm / cowin-discord-bot

A discord app to get upcoming COWIN appointments based on commands.
https://cowin-discord-bot.el.r.appspot.com/
MIT License
11 stars 3 forks source link

Add new age slot to bot #25

Closed UKnowWhoIm closed 3 years ago

UKnowWhoIm commented 3 years ago

At the time of making this bot there were only 2 age slots

CoWin has added a new age slot 40-44(represented as 40).

We've used this function in src/commands/common.js to set the age slot. Modify it to add the new age slot.

export const getAge = (age) => age >= 45 ? 45 : 18;