diff --git a/client/galaxy/scripts/apps/analysis.js b/client/galaxy/scripts/apps/analysis.js index 692178fdb48b..0bae3d192d51 100644 --- a/client/galaxy/scripts/apps/analysis.js +++ b/client/galaxy/scripts/apps/analysis.js @@ -82,6 +82,7 @@ window.app = function app( options, bootstrapped ){ '(/)user(/)(:form_id)' : 'show_user_form', '(/)workflow(/)' : 'show_workflows', '(/)pages(/)(:action_id)' : 'show_pages', + '(/)histories(/)(:action_id)' : 'show_histories', '(/)workflow/configure_menu(/)' : 'show_configure_menu', '(/)custom_builds' : 'show_custom_builds' }, @@ -117,6 +118,10 @@ window.app = function app( options, bootstrapped ){ this.page.display( new UserPreferences.Forms( { form_id: form_id, user_id: Galaxy.params.id } ) ); }, + show_histories : function( action_id ) { + this.page.display( new GridView( { url_base: Galaxy.root + 'history/list', dict_format: true } ) ); + }, + show_pages : function( action_id ) { this.page.display( new GridView( { url_base: Galaxy.root + 'page/list_published', dict_format: true } ) ); },