diff --git a/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs b/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs index 7b37da9c..0b4b2cb3 100644 --- a/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs +++ b/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs @@ -53,6 +53,9 @@ internal class NoteControllerModel(ApiClient api) public Task UnrenoteNote(string id) => api.CallNullable(HttpMethod.Post, $"/notes/{id}/unrenote"); + public Task?> GetRenotes(string id) => + api.CallNullable>(HttpMethod.Get, $"/notes/{id}/renotes"); + public Task ReactToNote(string id, string name) => api.CallNullable(HttpMethod.Post, $"/notes/{id}/react/{name}");