public async Task <IActionResult> MakeItPublicAsync(string postId, int userId)
        {
            var result = await _service.MakeItPublicAsync(postId, userId);

            return(Ok(result));
        }