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
Matthew Dillon 0c8fc4db6c 404/Not Found
Fixes #21
2015-10-14 11:24:40 -07:00

56 lines
1.4 KiB
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('users', function() {
this.route('requestlockouthelp');
this.route('lockoutauthenticate');
this.route('new', function() {
this.route('verify', { path: 'verify/:nonce' });
});
});
this.route('not-found', { path: '/*path' });
this.route('protected', { path: '/' }, function() {
this.route('about');
this.route('users', function() {
this.route('show', { path: ':user_id' });
this.route('edit', { path: ':user_id/edit' });
this.route('changepassword', { path: ':user_id/changepassword' });
});
this.route('compare', function() {
this.route('results');
});
this.route('characteristics', function() {
this.route('new');
this.route('show', { path: ':characteristic_id' });
this.route('edit', { path: ':characteristic_id/edit' });
});
this.route('species', function() {
this.route('new');
this.route('show', { path: ':species_id' });
this.route('edit', { path: ':species_id/edit' });
});
this.route('strains', function() {
this.route('new');
this.route('show', { path: ':strain_id' });
this.route('edit', { path: ':strain_id/edit' });
});
});
});
export default Router;