| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2021-03-19 | Add additional logging to _review.py | -0/+8 | ||
| 2021-03-19 | Apply requested style and grammar changes | -2/+2 | ||
| 2021-03-13 | Apply requested grammar and style changes. | -8/+13 | ||
| 2021-03-13 | Use log instead of erroneous self.log | -1/+1 | ||
| 2021-03-12 | Improve string building for long lines | -9/+15 | ||
| 2021-03-12 | Reviewer no longer subclasses Scheduler | -5/+31 | ||
| It didn't make much sense for the Reviewer to subclasses Scheduler. The Scheduler has methods that don't make sense to use on the Reviewer directly. There is now a Scheduler object as an attribute of the Reviewer. Interacting with it is done by adding __contains__, cancel, and cancel_all methods. | ||||
| 2021-03-11 | The 'seen vote' emoji is now a random ducky. | -4/+15 | ||
| 2021-03-11 | Limit new commands to mods+ | -0/+2 | ||
| 2021-03-11 | Added an auto-reviewer to the talentpool cog | -26/+404 | ||
| This commit adds the functionality to automatically review a nominee a set number of days after being nominated. This is implemented by subclassing the Scheduler and formatting a review after 30 days. The review contains details of the nominee, their nominations, the number of messages they have and the channels they're most active in, and statistics about their infractions and previous nominations. Lastly, the bot will add three emojis to the review: eyes to mark as seen, a thumbsup, and thumbsdown for the vote itself. The code accounts for the possibility of the review being too long for a single message but splitting it where necessary. | ||||