2023-03-10 03:12:51 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
Fabricator(:encrypted_message) do
|
2023-06-10 09:29:01 -07:00
|
|
|
device { Fabricate.build(:device) }
|
|
|
|
from_account { Fabricate.build(:account) }
|
2023-03-10 03:12:51 -08:00
|
|
|
from_device_id { Faker::Number.number(digits: 5) }
|
|
|
|
end
|