module.exports = function routes() {
this.root('pages#main');
this.match('/status', 'pages#status');
this.resources('paper');
this.resources('tempform');
};
How to add a new url suppose "paper/domain" to my application?
Can someone please explain how I can add this? I have read the Locomotive guide but couldn't figure out the solution.
In Locomotive routes are configured in
config/routes.js
.And then in the
controllers
directory create a new file with