diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-07-15 13:40:54 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-07-15 14:12:24 -0500 |
commit | 5e3ea221a80d7498d4939386f072d933e6b23dda (patch) | |
tree | e64017e83bbe4dc7689c3663bca19c58359890ed /app/models | |
parent | cf3ec71aa564c7fe47ec79f8dd5f14e3bce0b85c (diff) |
add `supports_chat` property, rename `adults_only` to `adult_content`, federate the kobolds~
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index 7040f138b..8187bc7d9 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -45,9 +45,12 @@ # unlisted :boolean default(FALSE), not null # force_unlisted :boolean default(FALSE), not null # force_sensitive :boolean default(FALSE), not null -# adults_only :boolean default(FALSE), not null +# adult_content :boolean default(FALSE), not null # silenced_at :datetime # suspended_at :datetime +# supports_chat :boolean default(FALSE), not null +# gently :boolean default(FALSE), not null +# kobold :boolean default(FALSE), not null # class Account < ApplicationRecord |