diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2019-10-28 12:47:23 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2019-11-28 22:08:30 +0300 |
commit | a52da55eb9c6bbf8a08bf1d90d59a48dc25f5907 (patch) | |
tree | 766d151dfa013931b636b723746061bbeb4f1429 /test/support/factory.ex | |
parent | ca1acfa314a57f78c2f5f8e60a4bd1380350e483 (diff) | |
download | pleroma-a52da55eb9c6bbf8a08bf1d90d59a48dc25f5907.tar.gz |
added User.NotificationSetting struct
Diffstat (limited to 'test/support/factory.ex')
-rw-r--r-- | test/support/factory.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/support/factory.ex b/test/support/factory.ex index e3f797f64..4bd82ebd6 100644 --- a/test/support/factory.ex +++ b/test/support/factory.ex @@ -32,7 +32,8 @@ defmodule Pleroma.Factory do password_hash: Comeonin.Pbkdf2.hashpwsalt("test"), bio: sequence(:bio, &"Tester Number #{&1}"), info: %{}, - last_digest_emailed_at: NaiveDateTime.utc_now() + last_digest_emailed_at: NaiveDateTime.utc_now(), + notification_settings: %Pleroma.User.NotificationSetting{} } %{ |