hot fix for friends controller

This commit is contained in:
Artemy
2025-07-03 19:46:53 +07:00
parent 565d3249e5
commit d170c6270f
16 changed files with 193 additions and 49 deletions
@@ -54,4 +54,10 @@ public class OnlinePingingController : Controller
return StatusCode(500, new { error = "Failed to send friend request." });
}
}
[HttpGet("is-online")]
public async Task<IActionResult> IsOnline(Guid userId)
{
return BadRequest();
}
}