diff options
author | Erik Johnston <erik@matrix.org> | 2018-02-16 11:35:01 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-02-16 11:35:01 +0000 |
commit | 012e8e142a4ca7d87e1ffd66cce44b23bf943e9c (patch) | |
tree | 7742bcb7216e50b8378e10efc7075f0572175b4d /synapse/storage/event_push_actions.py | |
parent | Fix unit test (diff) | |
download | synapse-012e8e142a4ca7d87e1ffd66cce44b23bf943e9c.tar.xz |
Comments
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r-- | synapse/storage/event_push_actions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py index 28226455bf..ea56d4d065 100644 --- a/synapse/storage/event_push_actions.py +++ b/synapse/storage/event_push_actions.py @@ -762,7 +762,8 @@ class EventPushActionsStore(SQLBaseStore): Args: event_id (str) user_id (str) - actions (list) + actions (list[dict|str]): An action can either be a string or + dict. Returns: Deferred |