Ejemplo n.º 1
0
        public async Task <Script> PatchScript(long scriptid, [FromBody] PatchOperation[] patches)
        {
            logger.LogInformation("Patching script {scriptid}", scriptid);
            await scriptservice.PatchScript(scriptid, patches);

            return(await scriptservice.GetScript(scriptid));
        }