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
8552ed8d
Commit
8552ed8d
authored
10 years ago
by
David Baker
Browse files
Options
Downloads
Patches
Plain Diff
Change uses of get_user_by_req because it returns a tuple now.
parent
26c8fff1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/rest/client/v1/push_rule.py
+3
-3
3 additions, 3 deletions
synapse/rest/client/v1/push_rule.py
synapse/rest/client/v1/pusher.py
+1
-1
1 addition, 1 deletion
synapse/rest/client/v1/pusher.py
with
4 additions
and
4 deletions
synapse/rest/client/v1/push_rule.py
+
3
−
3
View file @
8552ed8d
...
...
@@ -138,7 +138,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
except
InvalidRuleException
as
e
:
raise
SynapseError
(
400
,
e
.
message
)
user
=
yield
self
.
auth
.
get_user_by_req
(
request
)
user
,
_
=
yield
self
.
auth
.
get_user_by_req
(
request
)
content
=
_parse_json
(
request
)
...
...
@@ -184,7 +184,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
except
InvalidRuleException
as
e
:
raise
SynapseError
(
400
,
e
.
message
)
user
=
yield
self
.
auth
.
get_user_by_req
(
request
)
user
,
_
=
yield
self
.
auth
.
get_user_by_req
(
request
)
if
'
device
'
in
spec
:
rules
=
yield
self
.
hs
.
get_datastore
().
get_push_rules_for_user_name
(
...
...
@@ -215,7 +215,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
@defer.inlineCallbacks
def
on_GET
(
self
,
request
):
user
=
yield
self
.
auth
.
get_user_by_req
(
request
)
user
,
_
=
yield
self
.
auth
.
get_user_by_req
(
request
)
# we build up the full structure and then decide which bits of it
# to send which means doing unnecessary work sometimes but is
...
...
This diff is collapsed.
Click to expand it.
synapse/rest/client/v1/pusher.py
+
1
−
1
View file @
8552ed8d
...
...
@@ -27,7 +27,7 @@ class PusherRestServlet(ClientV1RestServlet):
@defer.inlineCallbacks
def
on_POST
(
self
,
request
):
user
=
yield
self
.
auth
.
get_user_by_req
(
request
)
user
,
_
=
yield
self
.
auth
.
get_user_by_req
(
request
)
content
=
_parse_json
(
request
)
...
...
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