mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05: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);
|
||
|
}
|
||
|
};
|