-
Notifications
You must be signed in to change notification settings - Fork 80
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
Allow a higher number of votes than options at creation time #372
Labels
Comments
kaakaa
added
1. To Develop
Tech/Server
Plugin Server
Type/Enhancement
New feature or request
labels
Feb 23, 2021
There might be a few ways to handle this. Assuming the following for illustration:
These ideas aren't exhaustive; feel free to reply with suggestions/additions. |
I'm working around this issue by simply removing the upper limit, although I consider that a hacky fix. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Currently, there's no way (that I'm aware of) that would allow users to add options and to have everyone able to vote for all options. The number of votes per user is currently set at creation time of the poll and is capped at the number of options at that time. However, when a new option is added later by someone else, the maximum number of votes per user stays the same.
With the experimental GUI this means that right now the maximum number of votes allowed is 3 since there's no way to add more than 3 options at creation time.
I suggest removing the upper limit on votes altogether. This would allow the creator of the poll to just specify
--votes=99
and be done with it.I suppose this the function that would have to change:
matterpoll/server/poll/poll.go
Lines 164 to 179 in 1f381a5
The text was updated successfully, but these errors were encountered: