module.exports = function routes() {
this.root('pages#main');
this.match('/status', 'pages#status');
this.resources('paper');
this.resources('tempform');
};
アプリケーションに「紙/ドメイン」を想定した新しい URL を追加するにはどうすればよいですか?
誰かがこれを追加する方法を説明できますか? 機関車ガイドを読みましたが、解決策がわかりません。