[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor display application handling #15076

Draft
wants to merge 10 commits into
base: dev
Choose a base branch
from
Prev Previous commit
Next Next commit
Redirect display application handling to client
  • Loading branch information
guerler committed Nov 18, 2022
commit 77019e20c3adbd687fe908a014953566e3bffffa
2 changes: 1 addition & 1 deletion lib/galaxy/datatypes/display_applications/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_display_url(self, data, trans):
return trans.app.legacy_url_for(
mapper=trans.app.legacy_mapper,
controller="dataset",
action="display_application",
action="display_applications",
dataset_id=dataset_hash,
user_id=user_hash,
app_name=quote_plus(self.display_application.id),
Expand Down
1 change: 1 addition & 0 deletions lib/galaxy/webapps/galaxy/buildapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ def app_pair(global_conf, load_app_kwds=None, wsgi_preflight=True, **kwargs):
# webapp.add_client_route('/workflows/invocations/view_bco')
webapp.add_client_route("/custom_builds")
webapp.add_client_route("/interactivetool_entry_points/list")
webapp.add_client_route("/display_applications{path:.*?}")
webapp.add_client_route("/libraries{path:.*?}")
webapp.add_client_route("/storage{path:.*?}")

Expand Down