Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
match 'job_invocations/:id/rerun', to: 'react#index', :via => [:get], as: 'rerun_job_invocation'
match 'old/job_invocations/new', to: 'job_invocations#new', via: [:get], as: 'form_new_job_invocation'
match 'old/job_invocations/:id/rerun', to: 'job_invocations#rerun', via: [:get, :post], as: 'form_rerun_job_invocation'
get 'job_invocations/:id', to: 'react#index', as: 'job_invocation'
get 'legacy/job_invocations/:id', to: 'job_invocations#show', as: 'legacy_job_invocation'
match 'job_invocations_detail/:id/host_invocation/:host_id', to: 'react#index', :via => [:get], as: 'new_job_invocation_detail_by_host'
get 'show_template_invocation_by_host/:host_id/job_invocation/:id', to: 'template_invocations#show_template_invocation_by_host'
Expand All @@ -41,6 +40,8 @@
end
end

get 'job_invocations/:id', to: 'react#index', as: 'job_invocation'

resources :remote_execution_features, :only => [:show, :index, :update]

# index is needed so the auto_complete_search can be constructed, otherwise autocompletion in filter does not work
Expand Down
Loading