unlock_thread
Unlock a thread in Ed Discussion to allow new comments and replies, enabling continued discussion and collaboration.
Instructions
Unlock a thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | Global thread ID |
Implementation Reference
- src/api.ts:173-175 (handler)The actual implementation of the unlockThread method which performs the API request.
async unlockThread(threadId: number): Promise<void> { await this.request("POST", `threads/${threadId}/unlock`); } - src/index.ts:279-279 (registration)Registration of the unlock action within the threadActions object.
unlock: api.unlockThread,