No limitation on the number of item at this level. It has already been checked when preparing the query parameters
import Ember from 'ember';
import config from './config/environment';
const Router = Ember.Router.extend({
location: config.locationType,
rootURL: config.rootURL
});
Router.map(function() {
this.route('doc', { path: '/doc/:doc_id' });
});
export default Router;