diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-21 12:33:12 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-21 12:33:12 +0300 |
commit | fb492386c5323c4996d05a63ba8d93db6ed07f93 (patch) | |
tree | d8ddc5ce64f7d24ed8cee05b4458206021c212db | |
parent | fd1661468f8132800dec17ad9317d419b1440f5a (diff) | |
download | gitlab-ce-fb492386c5323c4996d05a63ba8d93db6ed07f93.tar.gz |
Fix accidentally removed class name
-rw-r--r-- | app/controllers/application_controller.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 2ce87e47f44..724122d4b93 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,3 +1,4 @@ +class ApplicationController < ActionController::Base before_filter :authenticate_user! before_filter :reject_blocked! before_filter :check_password_expiration |