Remove Ci::ApplicationController

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Takuya Noguchi 2016-10-07 01:01:32 +09:00 committed by Rémy Coutable
parent 516d869e09
commit 36bf0b67e5
No known key found for this signature in database
GPG Key ID: 46DF07E5CD9E96AB
4 changed files with 3 additions and 9 deletions

View File

@ -82,6 +82,7 @@ v 8.13.0 (unreleased)
- Retouch environments list and deployments list
- Add Container Registry on/off status to Admin Area !6638 (the-undefined)
- Grouped pipeline dropdown is a scrollable container
- Cleanup Ci::ApplicationController. !6757 (Takuya Noguchi)
- Fix a typo in doc/api/labels.md
v 8.12.5 (unreleased)

View File

@ -1,7 +0,0 @@
module Ci
class ApplicationController < ::ApplicationController
def self.railtie_helpers_paths
"app/helpers/ci"
end
end
end

View File

@ -1,5 +1,5 @@
module Ci
class LintsController < ApplicationController
class LintsController < ::ApplicationController
before_action :authenticate_user!
def show

View File

@ -1,5 +1,5 @@
module Ci
class ProjectsController < Ci::ApplicationController
class ProjectsController < ::ApplicationController
before_action :project
before_action :no_cache, only: [:badge]
before_action :authorize_read_project!, except: [:badge, :index]