You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
384 B
13 lines
384 B
3 years ago
|
FactoryBot.define do
|
||
|
factory :data_protection_confirmation do
|
||
|
organisation
|
||
|
data_protection_officer { FactoryBot.create(:user, :data_protection_officer) }
|
||
|
confirmed { true }
|
||
|
old_org_id { "7c5bd5fb549c09a2c55d7cb90d7ba84927e64618" }
|
||
|
old_id { "7c5bd5fb549c09a2c55d7cb90d7ba84927e64618" }
|
||
|
|
||
|
created_at { Time.zone.now }
|
||
|
updated_at { Time.zone.now }
|
||
|
end
|
||
|
end
|