Commit e64f72c9 authored by Mikołaj Wawrzyniak's avatar Mikołaj Wawrzyniak

Merge branch '330937-remove-allow_group_deploy_token-ff' into 'master'

Remove allow_group_deploy_token feature flag [RUN ALL RSPEC] [RUN AS-IF-FOSS]

See merge request gitlab-org/gitlab!63727
parents e09872c2 0317654a
...@@ -9,8 +9,6 @@ class GroupDeployToken < ApplicationRecord ...@@ -9,8 +9,6 @@ class GroupDeployToken < ApplicationRecord
validates :deploy_token_id, uniqueness: { scope: [:group_id] } validates :deploy_token_id, uniqueness: { scope: [:group_id] }
def has_access_to?(requested_project) def has_access_to?(requested_project)
return false unless Feature.enabled?(:allow_group_deploy_token, default_enabled: true)
requested_project_group = requested_project&.group requested_project_group = requested_project&.group
return false unless requested_project_group return false unless requested_project_group
return true if requested_project_group.id == group_id return true if requested_project_group.id == group_id
......
---
name: allow_group_deploy_token
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/23460
rollout_issue_url:
milestone: '12.8'
type: development
group: group::release
default_enabled: true
...@@ -248,19 +248,6 @@ RSpec.describe DeployToken do ...@@ -248,19 +248,6 @@ RSpec.describe DeployToken do
deploy_token.groups << group deploy_token.groups << group
end end
context 'and the allow_group_deploy_token feature flag is turned off' do
it 'is false' do
stub_feature_flags(allow_group_deploy_token: false)
is_expected.to be_falsy
end
end
context 'and the allow_group_deploy_token feature flag is turned on' do
before do
stub_feature_flags(allow_group_deploy_token: true)
end
context 'and the passed-in project does not belong to any group' do context 'and the passed-in project does not belong to any group' do
it { is_expected.to be_falsy } it { is_expected.to be_falsy }
end end
...@@ -312,7 +299,6 @@ RSpec.describe DeployToken do ...@@ -312,7 +299,6 @@ RSpec.describe DeployToken do
end end
end end
end end
end
context 'and the token is of project type' do context 'and the token is of project type' do
let(:deploy_token) { create(:deploy_token, projects: [project]) } let(:deploy_token) { create(:deploy_token, projects: [project]) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment