Skip to content

Instantly share code, notes, and snippets.

@carlwoodhouse
Created June 22, 2017 22:30
Show Gist options
  • Save carlwoodhouse/0cbc5c527f762096e0f3670eda2dcd68 to your computer and use it in GitHub Desktop.
Save carlwoodhouse/0cbc5c527f762096e0f3670eda2dcd68 to your computer and use it in GitHub Desktop.
controller returning a shape
[Themed]
public class MyController : Controller {
public ActionResult Index() {
var shape = _orchardServices.New.MyShape(SomeProperty: "woowooo");
return new ShapeResult(this, shape);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment