Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix tags paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Jan 25, 2023
1 parent c8a8e7a commit 7387dd0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion synapse/rest/client/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ class TagListServlet(RestServlet):
GET /user/{user_id}/rooms/{room_id}/tags HTTP/1.1
"""

PATTERNS = client_patterns("/user/(?P<user_id>[^/]*)/rooms/(?P<room_id>[^/]*)/tags")
PATTERNS = client_patterns(
"/user/(?P<user_id>[^/]*)/rooms/(?P<room_id>[^/]*)/tags$"
)

def __init__(self, hs: "HomeServer"):
super().__init__()
Expand Down

0 comments on commit 7387dd0

Please sign in to comment.