aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/deploy-azure.sh (unfollow)
Commit message (Collapse)AuthorLines
2019-02-04Removing the 'more than likely'Gravatar SebastiaanZ-1/+1
2019-02-04Rewording token removal text to send a stronger message.Gravatar SebastiaanZ-3/+3
2019-01-30Suppressing NotFound exception when trying to delete messagesGravatar SebastiaanZ-2/+10
2019-01-29Redirecting free command to bot-commands for regular users; correcting typo ↵Gravatar SebastiaanZ-29/+11
in decorator log message; adding STAFF_ROLES constant
2019-01-26Fixes hierarchy check when target not a server member.Gravatar Scragly-23/+28
- Defines the Union type of `discord.Member`, `discord.User` and the custom `proxy_user` function for cleaner converters. - Adds `isinstance` check for `target` to ensure it's a `discord.Member`. If it wasn't, it means the `Member` part of the Union converter failed so they're definitely not in the guild, so no need to check hierarchy; returns True when they're not a Member. - Removes now unnecessary `get_member`. - Adds missing punctuation and param docs to `respect_role_hierarchy` method docstring.
2019-01-22Empty commit for redeployGravatar Scragly-0/+1
2019-01-19Hiding 'hidden infractions' from regular users user information embedGravatar SebastiaanZ-1/+4
2019-01-19Move comment checking to after code extraction, use try:finally block for ↵Gravatar Scragly-13/+11
removing job entry.
2019-01-18Adding log.trace messages to decoratorGravatar SebastiaanZ-7/+16
2019-01-18Adding redirection constants to contants.py and config-default.ymlGravatar SebastiaanZ-0/+10
2019-01-18Redirecting output of help of regular users to bot-commandsGravatar SebastiaanZ-1/+4
2019-01-18Adding 'redirect_output' decorator to bot/decorators.pyGravatar SebastiaanZ-1/+30
2019-01-17The codeblock is already stripped laterGravatar scragly-1/+1
Co-Authored-By: FrenchMasterSword <[email protected]>
2019-01-17Revert RMQ mod_log event name.Gravatar Scragly-16/+16
2019-01-17Move RMQ logs to devlog.Gravatar Scragly-18/+18
2019-01-16Simplify role check logicGravatar sco1-9/+8
2019-01-16Add developer wiki linksGravatar sco1-0/+5
2019-01-17Revert modlog channel for unbanned notificationGravatar S. Co1-1/+1
Co-Authored-By: scragly <[email protected]>
2019-01-17Revert modlog channel for banned notificationGravatar S. Co1-1/+1
Co-Authored-By: scragly <[email protected]>
2019-01-17Add new userlog channel support.Gravatar Scragly-10/+18
2019-01-16Correct altered log_msg kwarg used.Gravatar Scragly-1/+1
2019-01-16Changing incorrect type hinting for _parse_infraction_time and updating its ↵Gravatar SebastiaanZ-2/+6
docstring
2019-01-14Fix number duplicationGravatar sco1-2/+2
2019-01-14Change enumeration incrementGravatar sco1-8/+8
2019-01-14Updating docstring for 'bigbrother nominate' command so it's equal to 'nominate'Gravatar SebastiaanZ-2/+2
2019-01-14Separating the potential helper watch and bb watch by adding a separate ↵Gravatar SebastiaanZ-42/+128
nominate-command
2019-01-13Changing the rich embed filter to a watchlist that ignores twitter embeds; ↵Gravatar SebastiaanZ-21/+27
adding time delta check to avoid the trigger-twice problem
2019-01-13Change MR to PR, reorder log levelsGravatar sco1-4/+4
2019-01-13Enumerate itemsGravatar sco1-8/+8
Markdown is made for humans to read and only coincidentally for computers to render. If it's supposed to be an unordered list, use - or *. If it's supposed to be ordered, enumerate it.
2019-01-13Using the exception message as the description in BadArgument error embeds.Gravatar Leon Sandøy-2/+2
2019-01-13fixing a bad conflict resolution pt2Gravatar Leon Sandøy-1/+1
2019-01-13fixing a bad conflict resolutionGravatar Leon Sandøy-11/+0
2019-01-13reverting the lockfile, no changes neededGravatar Leon Sandøy-196/+166
2019-01-13Adressing jchrists review commentsGravatar Leon Sandøy-113/+122
2019-01-12Change log.error to log.exception to avoid hiding tracebackGravatar Sebastiaan Zeeff-1/+1
Co-Authored-By: fiskenslakt <[email protected]>
2019-01-12Change ctx.invoke to ctx.reinvoke to conserve passed argumentsGravatar Sebastiaan Zeeff-1/+1
Co-Authored-By: fiskenslakt <[email protected]>
2019-01-12Clarify trace logging level as PyDis-implementedGravatar sco1-1/+1
2019-01-12Update sentence flow for clarity Gravatar Leon Sandøy-2/+2
and to prevent dizziness Co-Authored-By: sco1 <[email protected]>
2019-01-12Condense logicGravatar sco1-5/+2
2019-01-12Add Optional type hints where appropriateGravatar sco1-6/+6
2019-01-12Changing check-specific exception to superclass exception so help doesn't ↵Gravatar SebastiaanZ-2/+2
break when new check exceptions are added
2019-01-11Remove debug print statementGravatar sco1-1/+0
2019-01-11Add edit delta to modlog for multi-edit messagesGravatar sco1-8/+39
To help with self-bot detection, if a message has been previously edited, generate a human-readable delta between the last edit and the new one Use message timestamp for modlog embeds generated during on_message event Visually separate send_log_message kwargs to make them easier to read
2019-01-11Proofreading pass on Contributor docGravatar sco1-12/+12
2019-01-11Disable rich embed filterGravatar sco1-1/+1
Discord adding the embeds is causing it to trigger.
2019-01-11Revert "Catching the superclass CheckFailure instead of the subclass"Gravatar SebastiaanZ-2/+2
This reverts commit 8f30b52fd378bb3546c84d0fdb945a4b492236b8. Accidentally pushed to master when I thought I was at a branch
2019-01-11Catching the superclass CheckFailure instead of the subclassGravatar SebastiaanZ-2/+2
2019-01-11Using stronger language in the message and emphazising the 'strongly ↵Gravatar SebastiaanZ-2/+3
recommend' with bold
2019-01-11Only retrieve/cache watch reason when user becomes active; restore ↵Gravatar SebastiaanZ-9/+12
update_cache to synchronous as it was before
2019-01-10Initial rework of Contributor guidelines (not yet proofread)Gravatar sco1-29/+33
Add guidance on commit scope & frequency Add guidance on commit messages Beat people over the head with flake8 & precommit hooks Add logging level definition Remove the random linebreaks Minor wordsmithing, formatting changes