debian-mirror-gitlab/spec/factories/clusters/agent_tokens.rb
2020-10-24 23:57:45 +05:30

10 lines
262 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :cluster_agent_token, class: 'Clusters::AgentToken' do
association :agent, factory: :cluster_agent
token_encrypted { Gitlab::CryptoHelper.aes256_gcm_encrypt(SecureRandom.hex(50)) }
end
end