public async Task <IActionResult> DeleteByAccountId(int id)
        {
            await _followService.DeleteFollowBySubjectId(id, Account.Id);

            return(Ok(new { message = "Follow deleted successfully" }));
        }