Skip to content

Commit

Permalink
add back room-advert routes
Browse files Browse the repository at this point in the history
  • Loading branch information
DrumsnChocolate committed Nov 3, 2024
1 parent c8e3a32 commit b48d805
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,15 @@ Router.map(function () {

this.route('profile');

this.route('room-adverts', function () {
this.route('new');

this.route('room-advert', { path: ':id' }, function () {
this.route('edit');
this.route('destroy');
});
});

this.route('sog', function () {
this.route('name-trainer');
});
Expand Down

0 comments on commit b48d805

Please sign in to comment.