a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/web] Add missing doc comment for Edit note endpoint

pancakes e20dc94b 6db5073f

+8 -1
+8 -1
Iceshrimp.Backend/Controllers/Web/NoteController.cs
··· 854 854 855 855 return await noteRenderer.RenderOne(note, user); 856 856 } 857 - 857 + 858 + /// <summary> 859 + /// Edit note 860 + /// </summary> 861 + /// <remarks>Update the contents of a note. Editing a note with a poll will reset the poll votes.</remarks> 862 + /// <param name="id">The note's ID</param> 863 + /// <param name="request">Note update request</param> 864 + /// <response code="200">Updated note</response> 858 865 [HttpPut("{id}")] 859 866 [Authenticate] 860 867 [Authorize]