summaryrefslogtreecommitdiff
path: root/app/controllers/ci/variables_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/ci/variables_controller.rb')
-rw-r--r--app/controllers/ci/variables_controller.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/controllers/ci/variables_controller.rb b/app/controllers/ci/variables_controller.rb
index 6908e0877f0..9c6c775fde8 100644
--- a/app/controllers/ci/variables_controller.rb
+++ b/app/controllers/ci/variables_controller.rb
@@ -1,9 +1,9 @@
module Ci
class VariablesController < Ci::ApplicationController
- before_filter :authenticate_user!
- before_filter :project
- before_filter :authorize_access_project!
- before_filter :authorize_manage_project!
+ before_action :authenticate_user!
+ before_action :project
+ before_action :authorize_access_project!
+ before_action :authorize_manage_project!
layout 'ci/project'