MCPcopy Create free account
hub / github.com/decaporg/decap-cms / updateEntryNote

Method updateEntryNote

packages/decap-cms-backend-github/src/API.ts:1905–1912  ·  view source on GitHub ↗
(noteId: string, note: Note)

Source from the content-addressed store, hash-verified

1903 }
1904
1905 async updateEntryNote(noteId: string, note: Note): Promise<void> {
1906 try {
1907 await this.updateIssueComment(noteId, note);
1908 } catch (error) {
1909 console.error('Failed to update entry note:', error);
1910 throw new APIError('Failed to update note', error.status || 500, API_NAME);
1911 }
1912 }
1913
1914 async deleteEntryNote(noteId: string): Promise<void> {
1915 try {

Callers 1

updateNoteMethod · 0.80

Calls 1

updateIssueCommentMethod · 0.95

Tested by

no test coverage detected