2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-07-01 03:19:50 +10:00
|
|
|
Fabricator(:account_note) do
|
2023-06-11 02:29:01 +10:00
|
|
|
account { Fabricate.build(:account) }
|
|
|
|
target_account { Fabricate.build(:account) }
|
2023-02-19 09:38:14 +11:00
|
|
|
comment 'User note text'
|
2020-07-01 03:19:50 +10:00
|
|
|
end
|