We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d6716 commit 476e14fCopy full SHA for 476e14f
internals/notifier.py
@@ -454,10 +454,7 @@ def process_post_data(self, **kwargs):
454
# actually changes to it.
455
# Load feature directly from NDB so as to never get a stale cached copy.
456
fe = FeatureEntry.get_by_id(feature['id'])
457
- user = users.User(email=triggering_user_email)
458
- can_view_feature = permissions.can_view_feature(user, fe)
459
-
460
- if fe and (is_update and len(changes) or not is_update) and can_view_feature:
+ if fe and (is_update and len(changes) or not is_update):
461
email_tasks = make_feature_changes_email(
462
fe, is_update=is_update, changes=changes,
463
triggering_user_email=triggering_user_email)
0 commit comments