I'm using iron:router to define paths in my Meteor application.
Now, I want to use houston:admin package to have a Django-like admin interface for Meteor's Mongodb.
The issue is that:
Routing rules are defined in shared/lib/routing.js.
Default route is defined client-side in client/app.js as:
Router.go('config');
A solution is to only enforce the default route if the current path does not begin with /admin
in client/app.js
if(!Iron.Location.get().path.match(/^\/admin/)){
Router.go('config');
}