(noteId: string)
| 1912 | } |
| 1913 | |
| 1914 | async deleteEntryNote(noteId: string): Promise<void> { |
| 1915 | try { |
| 1916 | await this.deleteIssueComment(noteId); |
| 1917 | } catch (error) { |
| 1918 | console.error('Failed to delete entry note:', error); |
| 1919 | throw new APIError('Failed to delete note', error.status || 500, API_NAME); |
| 1920 | } |
| 1921 | } |
| 1922 | |
| 1923 | /** |
| 1924 | * Get all entries that have notes (useful for showing notes indicator in UI) |
no test coverage detected