diff options
author | Jeong Arm <kjwonmail@gmail.com> | 2022-11-12 05:24:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 21:24:10 +0100 |
commit | c4c1bee8807e3548ff1f2b231a3cca647d9e8a62 (patch) | |
tree | 4115c5d901cf842b97da59c05e7134aae50322a7 /app/models | |
parent | 93a6ebc83d4bc6647d1eafce509a29aa3642c87c (diff) |
Fix trendable status without review (#20214)
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/account.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account.rb b/app/models/account.rb index cc3a8f3df..fc7359cfc 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -256,7 +256,7 @@ class Account < ApplicationRecord update!(memorial: true) end - def trendable + def trendable? boolean_with_default('trendable', Setting.trendable_by_default) end |