mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 06:03:20 +00:00
Allow former subscribers to see user profiles
This commit is contained in:
parent
a4984317e9
commit
a4abf50d18
@ -402,7 +402,7 @@ class User(AbstractBaseUser):
|
||||
return user.is_in_group(settings.SITH_MAIN_BOARD_GROUP) or user.is_root
|
||||
|
||||
def can_be_viewed_by(self, user):
|
||||
return (user.is_in_group(settings.SITH_MAIN_MEMBERS_GROUP) and self.is_subscriber_viewable) or user.is_root
|
||||
return (user.was_subscribed() and self.is_subscriber_viewable) or user.is_root
|
||||
|
||||
def get_mini_item(self):
|
||||
return """
|
||||
|
Loading…
Reference in New Issue
Block a user