From b48d805dd26ac8b2148f343d1f7e8e7cf46b19db Mon Sep 17 00:00:00 2001 From: DrumsnChocolate Date: Sun, 3 Nov 2024 20:31:28 +0100 Subject: [PATCH] add back room-advert routes --- app/router.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/router.js b/app/router.js index 34efed44e..aa21548ab 100644 --- a/app/router.js +++ b/app/router.js @@ -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'); });