Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_authorizations.rb « user_access « authorizations « agents « clusters « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8171607f5787ebc66bafba997f476e519a433607 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :agent_user_access_project_authorization,
    class: 'Clusters::Agents::Authorizations::UserAccess::ProjectAuthorization' do
    association :agent, factory: :cluster_agent
    config { {} }
    project
  end
end