kue-ui
Version:
Interface for kue
16 lines (13 loc) • 431 B
JavaScript
import Ember from 'ember';
import config from './config/environment';
var Router = Ember.Router.extend({
location: config.locationType
});
export default Router.map(function() {
this.route('jobs', function() {
this.route('type', { path: "type/:type" });
this.route('state', { path: "state/:stateId" });
this.route('show', { path: ":id" });
this.route('new', { path: "/new" });
});
});