This commit is contained in:
2020-06-17 19:40:29 +00:00
parent 305b61045d
commit faa6448737
4 changed files with 49 additions and 3 deletions

View File

@@ -240,6 +240,7 @@ app.shell = (function () {
page('/ops', ops);
page('/trials', trials);
page('/trialEdit/:id', trialEdit);
page('/ravLicense/:id/:site_id', ravLicense);
page('*', notFound);
page({
hashbang: true
@@ -569,6 +570,22 @@ app.shell = (function () {
app.trialEdit.initModule();
}
var trialEdit = function (ctx) {
app.nav.setSelectedMenuItem('trials');
app.trialEdit.configModule({
context: ctx
});
app.trialEdit.initModule();
}
var ravLicense = function (ctx) {
app.nav.setSelectedMenuItem('customers');
app.ravLicense.configModule({
context: ctx
});
app.ravLicense.initModule();
}
var notFound = function (ctx) {
app.fourohfour.configModule({