mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-alternative-signatures-module.git
synced 2026-04-17 07:52:14 +08:00
15 lines
No EOL
381 B
JavaScript
15 lines
No EOL
381 B
JavaScript
(function () {
|
|
var module_routes = [
|
|
{
|
|
"uri": "mailbox\/{id}\/signatures\/{signatureId}",
|
|
"name": "mailbox.custom_signatures"
|
|
}
|
|
];
|
|
|
|
if (typeof(laroute) != "undefined") {
|
|
laroute.add_routes(module_routes);
|
|
} else {
|
|
contole.log('laroute not initialized, can not add module routes:');
|
|
contole.log(module_routes);
|
|
}
|
|
})(); |