2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2018-05-08 10:10:19 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :avatar do
|
|
|
|
object_lookup_id { ObjectLookup.by_name('User') }
|
2019-03-27 09:01:36 +00:00
|
|
|
o_id { 1 }
|
|
|
|
default { true }
|
|
|
|
deletable { true }
|
|
|
|
initial { false }
|
|
|
|
source { 'init' }
|
|
|
|
source_url { nil }
|
|
|
|
created_by_id { 1 }
|
|
|
|
updated_by_id { 1 }
|
|
|
|
created_at { Time.zone.now }
|
|
|
|
updated_at { Time.zone.now }
|
2018-05-08 10:10:19 +00:00
|
|
|
end
|
|
|
|
end
|