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
9ac9b75b
Commit
9ac9b75b
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of github.com:matrix-org/synapse into develop
parents
6c558ee8
ebaa999f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
synapse/rest/client/v1/admin.py
+1
-1
1 addition, 1 deletion
synapse/rest/client/v1/admin.py
synapse/rest/client/v1/presence.py
+2
-2
2 additions, 2 deletions
synapse/rest/client/v1/presence.py
synapse/rest/client/v1/profile.py
+3
-3
3 additions, 3 deletions
synapse/rest/client/v1/profile.py
with
6 additions
and
6 deletions
synapse/rest/client/v1/admin.py
+
1
−
1
View file @
9ac9b75b
...
...
@@ -26,7 +26,7 @@ logger = logging.getLogger(__name__)
class
WhoisRestServlet
(
ClientV1RestServlet
):
PATTERNS
=
client_path_patterns
(
"
/admin/whois/(?P<user_id>[^/]*)
$
"
)
PATTERNS
=
client_path_patterns
(
"
/admin/whois/(?P<user_id>[^/]*)
"
)
@defer.inlineCallbacks
def
on_GET
(
self
,
request
,
user_id
):
...
...
This diff is collapsed.
Click to expand it.
synapse/rest/client/v1/presence.py
+
2
−
2
View file @
9ac9b75b
...
...
@@ -28,7 +28,7 @@ logger = logging.getLogger(__name__)
class
PresenceStatusRestServlet
(
ClientV1RestServlet
):
PATTERNS
=
client_path_patterns
(
"
/presence/(?P<user_id>[^/]*)/status
$
"
)
PATTERNS
=
client_path_patterns
(
"
/presence/(?P<user_id>[^/]*)/status
"
)
@defer.inlineCallbacks
def
on_GET
(
self
,
request
,
user_id
):
...
...
@@ -73,7 +73,7 @@ class PresenceStatusRestServlet(ClientV1RestServlet):
class
PresenceListRestServlet
(
ClientV1RestServlet
):
PATTERNS
=
client_path_patterns
(
"
/presence/list/(?P<user_id>[^/]*)
$
"
)
PATTERNS
=
client_path_patterns
(
"
/presence/list/(?P<user_id>[^/]*)
"
)
@defer.inlineCallbacks
def
on_GET
(
self
,
request
,
user_id
):
...
...
This diff is collapsed.
Click to expand it.
synapse/rest/client/v1/profile.py
+
3
−
3
View file @
9ac9b75b
...
...
@@ -23,7 +23,7 @@ import simplejson as json
class
ProfileDisplaynameRestServlet
(
ClientV1RestServlet
):
PATTERNS
=
client_path_patterns
(
"
/profile/(?P<user_id>[^/]*)/displayname
$
"
)
PATTERNS
=
client_path_patterns
(
"
/profile/(?P<user_id>[^/]*)/displayname
"
)
@defer.inlineCallbacks
def
on_GET
(
self
,
request
,
user_id
):
...
...
@@ -60,7 +60,7 @@ class ProfileDisplaynameRestServlet(ClientV1RestServlet):
class
ProfileAvatarURLRestServlet
(
ClientV1RestServlet
):
PATTERNS
=
client_path_patterns
(
"
/profile/(?P<user_id>[^/]*)/avatar_url
$
"
)
PATTERNS
=
client_path_patterns
(
"
/profile/(?P<user_id>[^/]*)/avatar_url
"
)
@defer.inlineCallbacks
def
on_GET
(
self
,
request
,
user_id
):
...
...
@@ -97,7 +97,7 @@ class ProfileAvatarURLRestServlet(ClientV1RestServlet):
class
ProfileRestServlet
(
ClientV1RestServlet
):
PATTERNS
=
client_path_patterns
(
"
/profile/(?P<user_id>[^/]*)
$
"
)
PATTERNS
=
client_path_patterns
(
"
/profile/(?P<user_id>[^/]*)
"
)
@defer.inlineCallbacks
def
on_GET
(
self
,
request
,
user_id
):
...
...
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