aboutsummaryrefslogtreecommitdiff
path: root/question_of_the_day
AgeCommit message (Collapse)Author
2024-03-27question_of_the_day: refactor, use guild_onlyArjun Satarkar
2024-03-27question_of_the_day: make suggest and add confirmation quieterArjun Satarkar
2024-03-11Add skeleton of starboard cog; improve menu handlingArjun Satarkar
We were previously not escaping mentions right in `qotd list` and `qotd suggest`. I think everyone and here could have maybe got through? Not sure about the defaults there. Also improved the handling in Markov where previously we'd been 1. allowing mentions but 2. editing the message from a dummy one so they didn't ping, which I think was out of some idea of preserving the exact text of an exclusion but it seems inelegant.
2024-03-09question_of_the_day: use get_member in paginate_questionsArjun Satarkar
Repeatedly running `fetch_member` is making this operation take a very long time, scaling with the number of questions present in the list. In practice, roughly 8 seconds was observed for just 22 questions when calling `qotd list`. Switching to `get_member` makes this near-instantaneous.
2024-02-12question_of_the_day: fix ImportErrorArjun Satarkar
2024-02-12question_of_the_day: fix qotd approve all missing some suggestionsArjun Satarkar
2024-02-12question_of_the_day: improve error handling in qotd approve commandArjun Satarkar
2024-02-11Restoring previous functionalityArjun Satarkar
2024-02-11Fix a strange issue pending further investigationArjun Satarkar
2023-12-25question_of_the_day: fix unpin breaking if the message was deletedArjun Satarkar
2023-12-24question_of_the_day: make sure we will never spam errors in edge casesArjun Satarkar
2023-12-24question_of_the_day: fix qotd approve allArjun Satarkar
2023-12-24question_of_the_day: actually check if enabled before posting 😓Arjun Satarkar
2023-12-23question_of_the_day: add option to approve all suggestionsArjun Satarkar
2023-12-22question_of_the_day: fix pluralizationArjun Satarkar
2023-12-22question_of_the_day: remove redundant codeArjun Satarkar
2023-12-22question_of_the_day: fix missing space in QOTD postArjun Satarkar
2023-12-22question_of_the_day: switch to using an embedArjun Satarkar
2023-12-21question_of_the_day: improve formattingArjun Satarkar
2023-12-21Add more docstringsArjun Satarkar
2023-12-21question_of_the_day: add command qotd postArjun Satarkar
2023-12-21question_of_the_day: automatically pin the new QOTD and unpin the oldArjun Satarkar
2023-12-21question_of_the_day: separate the qotd-posting logic outArjun Satarkar
2023-12-21question_of_the_day: fix bug preventing QOTD posting from occurringArjun Satarkar
Initially last_posted_qotds_at is None which caused problems.
2023-12-21question_of_the_day: add suggestion featureArjun Satarkar
2023-12-21Format with blackArjun Satarkar
2023-12-21Add question_of_the_dayArjun Satarkar