Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created November 23, 2023 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/3f7e70209b0da10b47398386d51a623f to your computer and use it in GitHub Desktop.
Save bjoerntx/3f7e70209b0da10b47398386d51a623f to your computer and use it in GitHub Desktop.
[HttpPost]
public IActionResult Save([FromBody] Content data, string id)
{
Storage.AddTemplate(new MemoryStream(Convert.FromBase64String(data.Data)), id);
return Ok();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment