Example #1
0
        public async Task <IActionResult> Clone([FromBody] CloneModel model)
        {
            _logger.Info("Requesting clone Standard with {@model}", model);
            await _standardRepository.CloneAsync(model.CloneId, model.CloneName);

            return(Ok());
        }