Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r--app/controllers/application_controller.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 12d439b0b31..ac9484a4cd2 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -1,9 +1,13 @@
require 'gon'
class ApplicationController < ActionController::Base
+ def self.railtie_helpers_paths
+ "app/helpers/gitlab"
+ end
+
include Gitlab::CurrentSettings
- include GitlabRoutingHelper
- include PageLayoutHelper
+ include Gitlab::GitlabRoutingHelper
+ include Gitlab::PageLayoutHelper
PER_PAGE = 20
@@ -131,9 +135,6 @@ class ApplicationController < ActionController::Base
def repository
@repository ||= project.repository
- rescue Grit::NoSuchPathError => e
- log_exception(e)
- nil
end
def authorize_project!(action)