Guest User

Untitled

a guest
Jun 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. this.route('objects', function () {
  2. this.route('search', { path: '/' }, function () {
  3. this.resource('objects.items', { path: '/:search_id' }, function () {
  4. this.resource('objects.item', { path: '/item/:item_id'}, function () {
  5. this.route('general', { path: '/' });
  6. this.route('tab', { path: '/tab/:tab' });
  7. this.route('relations');
  8. this.route('diagram');
  9. this.route('comments');
  10. this.route('sources');
  11. this.route('views');
  12. });
  13. });
  14. });
  15. });
Add Comment
Please, Sign In to add comment