Sha256: c8004d887dfb98f1cd5de8aa7e7eacf6bbcb73aca0267d614299e73fbfb5c6d6
Contents?: true
Size: 354 Bytes
Versions: 10
Compression:
Stored size: 354 Bytes
Contents
import EmberRouter from "@ember/routing/router"; import config from "./config/environment"; const Router = EmberRouter.extend({ location: config.locationType, rootURL: config.rootURL }); Router.map(function() { this.route("index", { path: "/" }); this.route("show", { path: "/show/:id" }); this.route("settings"); }); export default Router;
Version data entries
10 entries across 10 versions & 1 rubygems