Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
99292830
Commit
99292830
authored
9 years ago
by
David Baker
Browse files
Options
Downloads
Patches
Plain Diff
Delete notifications for redacted events
parent
ae1262a2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/push/action_generator.py
+7
-0
7 additions, 0 deletions
synapse/push/action_generator.py
synapse/storage/event_push_actions.py
+12
-0
12 additions, 0 deletions
synapse/storage/event_push_actions.py
with
19 additions
and
0 deletions
synapse/push/action_generator.py
+
7
−
0
View file @
99292830
...
...
@@ -19,6 +19,8 @@ import bulk_push_rule_evaluator
import
logging
from
synapse.api.constants
import
EventTypes
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -34,6 +36,11 @@ class ActionGenerator:
@defer.inlineCallbacks
def
handle_push_actions_for_event
(
self
,
event
,
handler
):
if
event
.
type
==
EventTypes
.
Redaction
and
event
.
redacts
is
not
None
:
yield
self
.
store
.
remove_push_actions_for_event_id
(
event
.
room_id
,
event
.
redacts
)
bulk_evaluator
=
yield
bulk_push_rule_evaluator
.
evaluator_for_room_id
(
event
.
room_id
,
self
.
store
)
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/event_push_actions.py
+
12
−
0
View file @
99292830
...
...
@@ -93,6 +93,18 @@ class EventPushActionsStore(SQLBaseStore):
)
defer
.
returnValue
(
ret
)
@defer.inlineCallbacks
def
remove_push_actions_for_event_id
(
self
,
room_id
,
event_id
):
def
f
(
txn
):
txn
.
execute
(
"
DELETE FROM event_push_actions WHERE room_id = ? AND event_id = ?
"
,
(
room_id
,
event_id
)
)
yield
self
.
runInteraction
(
"
remove_push_actions_for_event_id
"
,
f
)
class
EventPushActionsTable
(
object
):
table_name
=
"
event_push_actions
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment