Skip to content
Snippets Groups Projects
Commit e360673b authored by Marius Bobin's avatar Marius Bobin Committed by Dylan Griffith
Browse files

Add feature flag control builds token encryption [RUN ALL RSPEC] [RUN AS-IF-FOSS]

parent 581f7a4b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -212,7 +212,8 @@ def persisted_environment
 
acts_as_taggable
 
add_authentication_token_field :token, encrypted: :optional
add_authentication_token_field :token,
encrypted: -> { Gitlab::Ci::Features.require_builds_token_encryption? ? :required : :optional }
 
before_save :ensure_token
before_destroy { unscoped_project }
Loading
Loading
---
name: ci_builds_tokens_required_encryption
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/63874
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/333566
milestone: '14.0'
type: development
group: group::pipeline execution
default_enabled: false
Loading
Loading
@@ -41,6 +41,10 @@ def self.display_quality_on_mr_diff?(project)
def self.gldropdown_tags_enabled?
::Feature.enabled?(:gldropdown_tags, default_enabled: :yaml)
end
def self.require_builds_token_encryption?
Feature.enabled?(:ci_builds_tokens_required_encryption, default_enabled: :yaml)
end
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment