diff options
| author | Rapptz <[email protected]> | 2021-05-05 20:51:06 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-06-08 07:26:22 -0400 |
| commit | d0d2d7ea62e4aec95c4c2b5338c9f11f4f965b42 (patch) | |
| tree | 3f9c01dc0b006d39b41a59c64c2b92f97e24884b /discord/http.py | |
| parent | Add thread related permissions (diff) | |
| download | discord.py-d0d2d7ea62e4aec95c4c2b5338c9f11f4f965b42.tar.xz discord.py-d0d2d7ea62e4aec95c4c2b5338c9f11f4f965b42.zip | |
Clarify actions that require manage_threads permission
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/http.py b/discord/http.py index d96f1f30..1419acb6 100644 --- a/discord/http.py +++ b/discord/http.py @@ -698,6 +698,7 @@ class HTTPClient: 'video_quality_mode', 'archived', 'auto_archive_duration', + 'locked', ) payload = {k: v for k, v in options.items() if k in valid_keys} return self.request(r, reason=reason, json=payload) |