mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 00:26:20 +00:00
10 lines
231 B
Ruby
10 lines
231 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :namespace_settings, class: 'NamespaceSetting' do
|
|
default_branch_protection_defaults { ::Gitlab::Access::BranchProtection.protection_none }
|
|
|
|
namespace
|
|
end
|
|
end
|