diff options
author | lain <lain@soykaf.club> | 2020-07-03 13:12:23 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-07-03 13:12:23 +0200 |
commit | 37fdb05058d17abde11fd3e55ce896464c7d22e4 (patch) | |
tree | 0de7b532feba6b906777a1f15edc4ab29a811e63 /lib/pleroma | |
parent | 3250228be9719b0afa24c97b64f56d2275c4fe67 (diff) | |
download | pleroma-37fdb05058d17abde11fd3e55ce896464c7d22e4.tar.gz |
User, Migration: Change `accepts_chat_messages` to be nullable
This is to model the ambiguous state of most users.
Diffstat (limited to 'lib/pleroma')
-rw-r--r-- | lib/pleroma/user.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 79e094a79..7a684b192 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -138,7 +138,7 @@ defmodule Pleroma.User do field(:also_known_as, {:array, :string}, default: []) field(:inbox, :string) field(:shared_inbox, :string) - field(:accepts_chat_messages, :boolean, default: false) + field(:accepts_chat_messages, :boolean, default: nil) embeds_one( :notification_settings, |