aboutsummaryrefslogtreecommitdiff
path: root/discord/threads.py
Commit message (Collapse)AuthorAgeFilesLines
* Update thread permissionsJames Gayfer2021-08-261-4/+2
| | | | | | | Discord has renamed / repurposed "Use Public Threads" and "Use Private Threads", as well as added a new permission "Send Messages in Threads". For more information, see: https://github.com/discord/discord-api-docs/pull/3672
* Add support for invitable thread optionJosh2021-08-261-0/+11
|
* Remove in-place edits and return fresh instances insteadRapptz2021-08-231-2/+9
| | | | Fixes #4098
* Fix missing typehint that causes an error for a type checkerStocker2021-08-191-1/+2
|
* Add Thread.members and Thread.fetch_membersRapptz2021-08-181-0/+32
|
* Update description of auto_archive_duration kwarg of Thread.editWilly2021-07-311-1/+1
|
* Add Thread.categoryArthur2021-07-301-1/+21
|
* Set Thread.member/message_countNadir Chowdhury2021-07-281-0/+2
|
* Fix Thread.slowmode_delay not updatingz03h2021-07-211-0/+2
|
* Fix type annotations for purge's limit param on Thread/TextChannelSteve C2021-07-211-1/+1
| | | Optional was missing.
* [commands] Fix (Partial)MessageConverter to work with thread messagesNadir Chowdhury2021-07-101-1/+26
|
* Fix Client.fetch_channel not returning ThreadAlex Nørgaard2021-07-031-2/+2
|
* Add Thread.is_nsfwAlex Nørgaard2021-07-031-0/+9
|
* Add Thread.mentionRapptz2021-07-011-0/+5
|
* Add type property to thread channelsAlex Liu2021-07-011-0/+4
|
* Fix typing linting error in threadsRapptz2021-06-291-1/+1
|
* Add category_id shortcut to ThreadLilly Rose Berner2021-06-091-0/+20
|
* Add __str__ method to ThreadLilly Rose Berner2021-06-091-0/+3
|
* Add Thread.permissions_for helper functionfeature/threadsRapptz2021-06-081-2/+36
|
* Add message purging functions to ThreadRapptz2021-06-081-3/+175
|
* Parse remaining thread events.Rapptz2021-06-081-0/+2
|
* Add ThreadMember.threadRapptz2021-06-081-0/+5
|
* Clarify actions that require manage_threads permissionRapptz2021-06-081-6/+33
|
* Add __repr__ for the thread classesRapptz2021-06-081-0/+9
|
* Add minor parsing for THREAD_LIST_SYNC and THREAD_MEMBER_UPDATERapptz2021-06-081-1/+7
| | | | There's no dispatch for these yet
* Replace Ellipsis with utils.MISSINGRapptz2021-06-081-11/+12
|
* Fix partial thread membersRapptz2021-06-081-6/+18
|
* Add Thread.is_news()Rapptz2021-06-081-0/+4
|
* Update thread typings and payloads to match documentationRapptz2021-06-081-2/+12
|
* Implement remaining HTTP endpoints on threadsRapptz2021-06-081-1/+138
| | | | | I'm not sure if I missed any -- but this is the entire documented set so far.
* First pass at preliminary thread supportRapptz2021-06-081-0/+244
This is missing a lot of functionality right now, such as two gateway events and all the HTTP CRUD endpoints.