migration of open-etc-friends-pool for use with Etica/EGAZ
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
590 B

import Ember from 'ember';
import config from './config/environment';
var Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('account', { path: '/account/:login' }, function() {
this.route('payouts');
this.route('rewards');
});
this.route('not-found');
this.route('blocks', function() {
this.route('immature');
this.route('pending');
});
this.route('help');
this.route('payments');
this.route('miners');
this.route('finders');
this.route('about');
this.route('chart');
});
export default Router;