-
-
Notifications
You must be signed in to change notification settings - Fork 115
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
fix: adding functionality to update isvotedinlast3months in tsc_voting_overview.md #1630
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Welcome to AsyncAPI. Thanks a lot for creating your first pull request. Please check out our contributors guide useful for opening a pull request.
Keep in mind there are also other channels you can use to interact with AsyncAPI community. For more details check out this issue.
voteInfo.lastParticipatedVoteTime = currentTime; | ||
voteInfo.isVotedInLast3Months = isVotingWithinLastThreeMonths(voteInfo.lastParticipatedVoteTime)? 'true' : 'false'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you explain how did you try to test it locally? isVotingWithinLastThreeMonths
expects an object, and here you don't pass an object?
can you provide me resources for testing it locally, i am not able to find out ? |
@Shivrajsoni there is no easy solution in place yet. You would need to do some refactoring and enable such functionality to run the script on local |
#1614
Description
update voting_tracker.js so that at each user Update , isVotedInLast3Months (in table ) get updated according to lastparticipatedvotetime (of table TSC_VOTING_OVERVIEW)
and manually updated the TSC_VOTING_OVERVIEW.md file