mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
6 lines
143 B
Ruby
6 lines
143 B
Ruby
Fabricator(:tech_domain_contact) do
|
|
contact { Fabricate(:contact) }
|
|
after_build do |x|
|
|
x.contact_code_cache = x.contact.code
|
|
end
|
|
end
|