mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge branch 'develop' of github.com:matrix-org/synapse into release-v0.9.1
This commit is contained in:
commit
45fffe8cbe
@ -118,11 +118,14 @@ class PushRuleRestServlet(ClientV1RestServlet):
|
||||
user.to_string()
|
||||
)
|
||||
|
||||
for r in rawrules:
|
||||
r["conditions"] = json.loads(r["conditions"])
|
||||
r["actions"] = json.loads(r["actions"])
|
||||
ruleslist = []
|
||||
for rawrule in rawrules:
|
||||
rule = dict(rawrule)
|
||||
rule["conditions"] = json.loads(rawrule["conditions"])
|
||||
rule["actions"] = json.loads(rawrule["actions"])
|
||||
ruleslist.append(rule)
|
||||
|
||||
ruleslist = baserules.list_with_base_rules(rawrules, user)
|
||||
ruleslist = baserules.list_with_base_rules(ruleslist, user)
|
||||
|
||||
rules = {'global': {}, 'device': {}}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user