Hide follower/followings tabs if social graph is hidden

This commit is contained in:
Andreas Nedbal 2022-11-15 21:35:13 +01:00 committed by Andreas Nedbal
parent 9249ef976b
commit 51a70b67f4
1 changed files with 3 additions and 2 deletions

View File

@ -2,5 +2,6 @@
.list-group.list-group-horizontal-sm.text-center
= list_group_item t(".answers"), user_path(user), badge: user.answered_count
= list_group_item t(".questions"), show_user_questions_path(user.screen_name), badge: user.asked_count
= list_group_item t(".followers"), show_user_followers_path(user.screen_name), badge: user.followers.count
= list_group_item t(".following"), show_user_followings_path(user.screen_name), badge: user.followings.count
- if user == current_user || !user.privacy_hide_social_graph
= list_group_item t(".followers"), show_user_followers_path(user.screen_name), badge: user.followers.count
= list_group_item t(".following"), show_user_followings_path(user.screen_name), badge: user.followings.count