UnSub/Public/js/laroute.js
matt d0113dd8c3 adding lots more - hopefully with a pre-commit
hook.

Need to get the comments updates
2023-05-09 19:05:54 +01:00

15 lines
330 B
JavaScript

;(function () {
var module_routes = [
{
uri: "unsub",
name: "unsub_index",
},
]
if (typeof laroute != "undefined") {
laroute.add_routes(module_routes)
} else {
contole.log("laroute not initialized, can not add module routes:")
contole.log(module_routes)
}
})()