about summary refs log tree commit diff
path: root/app/models/account.rb
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-07-15 13:40:54 -0500
committermultiple creatures <dev@multiple-creature.party>2019-07-15 14:12:24 -0500
commit5e3ea221a80d7498d4939386f072d933e6b23dda (patch)
treee64017e83bbe4dc7689c3663bca19c58359890ed /app/models/account.rb
parentcf3ec71aa564c7fe47ec79f8dd5f14e3bce0b85c (diff)
add `supports_chat` property, rename `adults_only` to `adult_content`, federate the kobolds~
Diffstat (limited to 'app/models/account.rb')
-rw-r--r--app/models/account.rb5
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