This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/router.js
2015-06-05 08:35:44 -08:00

25 lines
528 B
JavaScript

import Ember from 'ember';
import config from './config/environment';
var Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('login');
this.route('about');
this.route('characteristics');
this.route('users');
this.route('species', function() {
this.route('new');
this.route('show', { path: ':species_id' });
});
this.route('strains', function() {
this.route('new');
this.route('show', { path: ':strain_id' });
});
});
export default Router;