Move hide_followers_count logic to an helper

This commit is contained in:
Thibaut Girka
2018-12-18 14:26:21 +01:00
committed by ThibG
parent bd23288a52
commit bc113927d6
3 changed files with 8 additions and 4 deletions

View File

@@ -60,6 +60,10 @@ module StreamEntriesHelper
end
end
def hide_followers_count(account)
Setting.hide_followers_count || account.user&.setting_hide_followers_count
end
def account_description(account)
prepend_stats = [
[
@@ -73,7 +77,7 @@ module StreamEntriesHelper
].join(' '),
]
unless Setting.hide_followers_count || account.user&.setting_hide_followers_count
unless hide_followers_count(account)
prepend_stats << [
number_to_human(account.followers_count, strip_insignificant_zeros: true),
I18n.t('accounts.followers', count: account.followers_count),