diff --git a/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs b/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs index 72d4220b..7b37da9c 100644 --- a/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs +++ b/Iceshrimp.Frontend/Core/ControllerModels/NoteControllerModel.cs @@ -40,6 +40,9 @@ internal class NoteControllerModel(ApiClient api) public Task UnlikeNote(string id) => api.CallNullable(HttpMethod.Post, $"/notes/{id}/unlike"); + public Task?> GetNoteLikes(string id) => + api.CallNullable>(HttpMethod.Get, $"/notes/{id}/likes"); + public Task RenoteNote(string id, NoteVisibility? visibility = null) { var query = new QueryString();