diff options
author | Douwe Maan <douwe@gitlab.com> | 2018-12-17 13:25:09 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2018-12-17 13:25:09 +0000 |
commit | 0ab50681da1f0c8d1ee1569d61c2ac509a9e3581 (patch) | |
tree | 38d53ed565cff3ce0c5df40592be11fe2911a16f /app/controllers | |
parent | e17d303e212a0e19f7bd2e5d7675f133ea004060 (diff) | |
parent | e8a675d35f02c6bca9d0e3c8cc116ccd240fa4f6 (diff) | |
download | gitlab-ce-0ab50681da1f0c8d1ee1569d61c2ac509a9e3581.tar.gz |
Merge branch '55230-remove-project-cleanup-feature-flag' into 'master'
Remove the project_cleanup feature flag
Closes #55230
See merge request gitlab-org/gitlab-ce!23814
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/projects/settings/repository_controller.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/controllers/projects/settings/repository_controller.rb b/app/controllers/projects/settings/repository_controller.rb index 30724de7f6a..ac3004d069f 100644 --- a/app/controllers/projects/settings/repository_controller.rb +++ b/app/controllers/projects/settings/repository_controller.rb @@ -5,7 +5,6 @@ module Projects class RepositoryController < Projects::ApplicationController before_action :authorize_admin_project! before_action :remote_mirror, only: [:show] - before_action :check_cleanup_feature_flag!, only: :cleanup def show render_show @@ -37,10 +36,6 @@ module Projects private - def check_cleanup_feature_flag! - render_404 unless ::Feature.enabled?(:project_cleanup, project) - end - def render_show @deploy_keys = DeployKeysPresenter.new(@project, current_user: current_user) @deploy_tokens = @project.deploy_tokens.active |