Allow promoted links on restricted subreddits.

This commit is contained in:
Brian Simpson
2013-07-15 17:25:05 -04:00
parent c28d748156
commit 84c6d101a4

View File

@@ -462,6 +462,8 @@ class Subreddit(Thing, Printable, BaseSite):
return True
elif self.type == 'gold_restricted' and user.gold:
return True
elif self.type == 'restricted' and promotion:
return True
else:
return False