diff options
author | Christopher Baines <mail@cbaines.net> | 2018-06-22 07:40:00 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-06-22 07:40:00 +0100 |
commit | a1897e5d322ca753ffd6073eeda84cc5f057bf5a (patch) | |
tree | 4a48eb1a962eb6986f3668b95af4661d82ea0af4 /app/controllers | |
parent | 4fbb412eaba21274919293f0b288c41da38c99a1 (diff) | |
download | govuk-mini-environment-admin-a1897e5d322ca753ffd6073eeda84cc5f057bf5a.tar govuk-mini-environment-admin-a1897e5d322ca753ffd6073eeda84cc5f057bf5a.tar.gz |
Reverse the jobs order on the mini environments show page
It's more useful to have the most recent jobs at the top.
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/mini_environments_controller.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/app/controllers/mini_environments_controller.rb b/app/controllers/mini_environments_controller.rb index 837a503..5081801 100644 --- a/app/controllers/mini_environments_controller.rb +++ b/app/controllers/mini_environments_controller.rb @@ -158,10 +158,4 @@ class MiniEnvironmentsController < ApplicationController render 'show' end - - def jobs - MiniEnvironmentJob.jobs(@mini_environment.id) - end - - helper_method :jobs end |