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-01-26 09:50:34 -09:00

16 lines
324 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.resource('genera');
this.resource('species');
this.resource('strains');
});
export default Router;