support for vendor notifications webhook

This commit is contained in:
2022-08-29 20:57:24 +00:00
parent 541cf1d2ae
commit 0d6425cf8b
11 changed files with 485 additions and 76 deletions

View File

@@ -230,6 +230,11 @@ app.shell = (function () {
page("/trialEdit/:id", trialEdit);
page("/ravLicenses/:id/:cust_id", ravLicenses);
page("/ravLicense/:id/:cust_id", ravLicense);
page("/vendorNotifications", vendorNotifications);
page("/vendorNotifications/:id", vendorNotification);
page("*", notFound);
page({
hashbang: true
@@ -556,6 +561,23 @@ app.shell = (function () {
app.ravLicenses.initModule();
};
var vendorNotification = function (ctx) {
app.nav.setSelectedMenuItem("vendornotifications");
app.vendorNotification.configModule({
context: ctx
});
app.vendorNotification.initModule();
};
var vendorNotifications = function (ctx) {
app.nav.setSelectedMenuItem("vendornotifications");
app.vendorNotifications.configModule({
context: ctx
});
app.vendorNotifications.initModule();
};
var notFound = function (ctx) {
app.fourohfour.configModule({
context: ctx