mirror of https://github.com/status-im/consul.git
21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
window.App = Ember.Application.create({
|
|
rootElement: "#app",
|
|
LOG_TRANSITIONS: true
|
|
});
|
|
|
|
App.Router.map(function() {
|
|
|
|
this.resource("dc", {path: "/:dc"}, function() {
|
|
this.resource("services", { path: "/services" }, function(){
|
|
this.route("show", { path: "/:name" });
|
|
});
|
|
this.resource("nodes", { path: "/nodes" }, function() {
|
|
this.route("show", { path: "/:name" });
|
|
});
|
|
this.resource("kv", { path: "/kv" });
|
|
});
|
|
|
|
this.route("index", { path: "/" });
|
|
});
|
|
|