| 24 | namespace dpp { |
| 25 | |
| 26 | void cluster::current_user_join_thread(snowflake thread_id, command_completion_event_t callback) { |
| 27 | rest_request<confirmation>(this, API_PATH "/channels", std::to_string(thread_id), "/thread-members/@me", m_put, "", callback); |
| 28 | } |
| 29 | |
| 30 | void cluster::current_user_leave_thread(snowflake thread_id, command_completion_event_t callback) { |
| 31 | rest_request<confirmation>(this, API_PATH "/channels", std::to_string(thread_id), "/thread-members/@me", m_delete, "", callback); |
nothing calls this directly
no test coverage detected