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

image_ttl_group_policies.rb « dependency_proxy « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21e5dd44cf5d032a9011825eaa3ec999fbd36378 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :image_ttl_group_policy, class: 'DependencyProxy::ImageTtlGroupPolicy' do
    group

    enabled { true }
    ttl { 90 }
  end
end