endorse_thread
Mark a discussion thread as endorsed to highlight important content for students in Ed Discussion courses.
Instructions
Endorse a thread (staff)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | Global thread ID |
Implementation Reference
- src/api.ts:185-187 (handler)The handler function that executes the API request to endorse a thread.
async endorseThread(threadId: number): Promise<void> { await this.request("POST", `threads/${threadId}/endorse`); } - src/index.ts:282-282 (registration)Registration of the endorse action in the threadActions object.
endorse: api.endorseThread,