@projectcaluma/ember-form-builder
Version:
Ember engine for building Caluma forms.
13 lines (11 loc) • 353 B
JavaScript
import buildRoutes from "ember-engines/routes";
export default buildRoutes(function () {
this.route("new");
this.route("edit", { path: "/:form_slug" }, function () {
this.route("general", { path: "/" });
this.route("questions", function () {
this.route("edit", { path: "/:question_slug" });
this.route("new");
});
});
});