This commit is contained in:
Bjoern Gruening
2019-08-31 13:33:29 +02:00
parent 924ed11fe4
commit 5232aefddd
2 changed files with 4 additions and 4 deletions
@@ -78,7 +78,7 @@ export const getAnalysisRouter = Galaxy =>
"(/)custom_builds": "show_custom_builds",
"(/)datasets/edit": "show_dataset_edit_attributes",
"(/)datasets/error": "show_dataset_error",
"(/)realtime_entry_points(/)list": "show_realtime_list"
"(/)interactivetool_entry_points(/)list": "show_interactivetool_list"
},
require_login: ["show_user", "show_user_form", "show_workflows", "show_cloud_auth"],
@@ -115,10 +115,10 @@ export const getAnalysisRouter = Galaxy =>
this.page.display(new FormWrapper.View(_.extend(model.get(form_id), { active_tab: "user" })));
},
show_realtime_list: function() {
show_interactivetool_list: function() {
this.page.display(
new EntryPointGridView({
url_base: `${getAppRoot()}realtime/list`,
url_base: `${getAppRoot()}interactivetool/list`,
active_tab: "analysis"
})
);
+1 -1
View File
@@ -313,7 +313,7 @@ const Collection = Backbone.Collection.extend({
userTab.menu[userTab.menu.length - 1].divider = true;
userTab.menu.push({
title: _l("Active InteractiveTools"),
url: "realtime_entry_points/list",
url: "interactivetool_entry_points/list",
target: "__use_router__"
});
}