mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
13 lines
216 B
JavaScript
13 lines
216 B
JavaScript
|
var _ = require('lodash'),
|
||
|
routes = [];
|
||
|
|
||
|
module.exports = {
|
||
|
set(routerName, route) {
|
||
|
routes.push({route: route, from: routerName});
|
||
|
},
|
||
|
|
||
|
getAll() {
|
||
|
return _.cloneDeep(routes);
|
||
|
}
|
||
|
};
|