public async Task <ActionResult <IEnumerable <Comment> > > DownRate(int id)
        {
            try
            {
                await _memeService.DownRateMemeAsync(id);

                return(Ok());
            }
            catch (AppException ex)
            {
                // return error message if there was an exception
                return(BadRequest(new { message = ex.Message }));
            }
        }