Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. this.resource('memes', function(){
  2. this.route('view', {path: ':id'});
  3. this.route('edit', {path: ':id/edit'});
  4. this.route('new');
  5.  
  6. this.resource('meme-items', {path: ':id/items'}, function(){
  7. this.route('new', {path: 'new'});
  8. this.route('approve', {path: 'approve'});
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement