add viaf resolver service & api
- add viaf api controller
- add unit test
- add viaf service provider
import Ember from 'ember';
import config from './config/environment';
var Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('visus/visu-langues', { path: '/langues' });
this.route('visus/visu-carto', { path: '/cartographie' });
this.route('visus/visu-thematiques', { path: '/thematiques' });
this.route('visus/visu-discours', { path: '/discours' });
this.route('visus/visu-chrono', { path: '/chronologie' });
});
export default Router;