Skip to content

Instantly share code, notes, and snippets.

@GabrielCW
Created December 22, 2015 09:24
Show Gist options
  • Save GabrielCW/eb31ba43d319dc8cd7e0 to your computer and use it in GitHub Desktop.
Save GabrielCW/eb31ba43d319dc8cd7e0 to your computer and use it in GitHub Desktop.
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function () {
this.route('advert', function () {
this.route('proximity', function () {
this.route('new');
});
});
});
export default Router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment