summaryrefslogtreecommitdiff
path: root/app/controllers/runners_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/runners_controller.rb')
-rw-r--r--app/controllers/runners_controller.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/runners_controller.rb b/app/controllers/runners_controller.rb
index 12578b3..2efa637 100644
--- a/app/controllers/runners_controller.rb
+++ b/app/controllers/runners_controller.rb
@@ -1,7 +1,7 @@
class RunnersController < ApplicationController
before_filter :authenticate_user!
before_filter :project
- before_filter :set_runner, only: [:edit, :update, :destroy, :pause, :resume]
+ before_filter :set_runner, only: [:edit, :update, :destroy, :pause, :resume, :show]
before_filter :authorize_access_project!
before_filter :authorize_manage_project!
@@ -50,6 +50,9 @@ class RunnersController < ApplicationController
end
end
+ def show
+ end
+
protected
def project