support for vendor notifications webhook
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user