diff --git a/Iceshrimp.Frontend/Core/ControllerModels/UserControllerModel.cs b/Iceshrimp.Frontend/Core/ControllerModels/UserControllerModel.cs index 59593578..eca28189 100644 --- a/Iceshrimp.Frontend/Core/ControllerModels/UserControllerModel.cs +++ b/Iceshrimp.Frontend/Core/ControllerModels/UserControllerModel.cs @@ -24,6 +24,7 @@ internal class UserControllerModel(ApiClient api) return api.CallNullable(HttpMethod.Get, "/users/lookup", query); } + public Task BiteUser(string id) => api.Call(HttpMethod.Post, $"/users/{id}/bite"); public Task FollowUser(string id) => api.CallNullable(HttpMethod.Post, $"/users/{id}/follow"); public Task UnfollowUser(string id) => api.CallNullable(HttpMethod.Post, $"/users/{id}/unfollow"); } \ No newline at end of file