[backend/api] Document 200 response for /users/{id}/unfollow (ISH-662)

This commit is contained in:
Laura Hausmann 2024-12-13 22:04:49 +01:00
parent f013520b84
commit 3edda1e70e
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -161,6 +161,7 @@ public class UserController(
}
[HttpPost("{id}/unfollow")]
[ProducesResults(HttpStatusCode.OK)]
[ProducesErrors(HttpStatusCode.BadRequest, HttpStatusCode.NotFound)]
public async Task UnfollowUser(string id)
{