aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/reddit.py (follow)
Commit message (Collapse)AuthorAgeLines
* Move practical functions into utilities folderGravatar Janine vN2021-09-05-368/+0
| | | | | | Separates out the useful/practical seasonal bot features from the evergreen folder into a "utilities" folder. Adjusts the paths to resources to reflect the folder move.
* Fix type annotationsGravatar decorator-factory2021-08-31-4/+4
|
* Escape markdown properly in post body to fix rendering on androidGravatar wookie1842021-08-27-1/+2
|
* Fixes Expected Token Revoke Status CodeGravatar Hassan Abouelela2021-05-10-1/+1
|
* Apply code review suggestions.Gravatar Rohan2021-04-15-2/+2
|
* Use custom help command util for sending command help.Gravatar Rohan2021-04-15-1/+2
|
* Fix lint error: Missing type annotation for function arugmentGravatar Rohan2021-01-27-1/+1
| | | | `paginate`.
* Fix bug in auto_poster_loop() regarding embed description.Gravatar Rohan2020-12-29-17/+22
|
* Changes to command output.Gravatar Rohan2020-12-09-9/+10
|
* Migrate reddit command from Bot repo and add pagination.Gravatar Rohan2020-12-02-0/+360
|
* Add Reddit class and emojis to constants file.Gravatar Rohan2020-12-02-128/+0
|
* fix `reddit` command to use new emojis.Gravatar Senjan212020-09-17-3/+3
|
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-03-28-1/+0
| | | | | | | | | | | | The previous system required each extension's `setup` func to log that the cog was loaded. This leads to inconsistent messages all trying to convey the same thing, variable logger names in the output file are difficult to read, and several extensions were not logging at all. By logging directly in the `add_cog` method, we reduce code repetition, ensure consistent format, and remove the responsibility to remember that a log should be made.
* Deseasonify: rename `seasons` pkg to `exts`Gravatar kwzrd2020-03-28-0/+129
It is believed that this is now a more logical name for the package, as extensions no longer bind to seasons. Internally, packages are still grouped into seasonal sub-packages. There are quite a few, and it makes sense to group them by a common theme that inspired their functionality.