delete-notes/Public/js/laroute.js
RienNeVaPlus df4cb4d01b v1.0.2
2022-09-14 04:35:00 +02:00

15 lines
No EOL
358 B
JavaScript

(function () {
var module_routes = [
{
"uri": "delete-note\/{thread_id}",
"name": "deletenotes.delete"
}
];
if (typeof(laroute) != "undefined") {
laroute.add_routes(module_routes);
} else {
contole.log('laroute not initialized, can not add module routes:');
contole.log(module_routes);
}
})();