diff options
author | stwf <steven.fuchs@dockyard.com> | 2020-09-14 11:40:52 -0400 |
---|---|---|
committer | stwf <steven.fuchs@dockyard.com> | 2020-09-17 12:15:50 -0400 |
commit | 41939e3175cf31884cb84acd136c303a84c77f8c (patch) | |
tree | dfec6299b2c697f297ee1e511dbfad606a143f41 /test/support/factory.ex | |
parent | 6b9bfc9e867ea49536d6fc38d674cdc2278778b8 (diff) | |
download | pleroma-41939e3175cf31884cb84acd136c303a84c77f8c.tar.gz pleroma-41939e3175cf31884cb84acd136c303a84c77f8c.zip |
User search respect discoverable flag
Diffstat (limited to 'test/support/factory.ex')
-rw-r--r-- | test/support/factory.ex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/support/factory.ex b/test/support/factory.ex index 2fdfabbc5..fb82be0c4 100644 --- a/test/support/factory.ex +++ b/test/support/factory.ex @@ -31,6 +31,7 @@ defmodule Pleroma.Factory do nickname: sequence(:nickname, &"nick#{&1}"), password_hash: Pbkdf2.hash_pwd_salt("test"), bio: sequence(:bio, &"Tester Number #{&1}"), + discoverable: true, last_digest_emailed_at: NaiveDateTime.utc_now(), last_refreshed_at: NaiveDateTime.utc_now(), notification_settings: %Pleroma.User.NotificationSetting{}, |