FreeFeatureRequests/Public/js/laroute.js
2023-10-17 18:14:18 +02:00

19 lines
495 B
JavaScript

(function () {
var module_routes = [
{
"uri": "freefeaturerequests\/ajax",
"name": "freefeaturerequests.ajax"
},
{
"uri": "freefeaturerequests\/ajax-html\/subscribers",
"name": "freefeaturerequests.subscribers"
}
];
if (typeof(laroute) != "undefined") {
laroute.add_routes(module_routes);
} else {
console.log('laroute not initialized, can not add module routes:');
console.log(module_routes);
}
})();