Bug fixes and absolute ids
This commit is contained in:
parent
3e434077f9
commit
b6964dd8aa
8 changed files with 37 additions and 29 deletions
|
@ -17,14 +17,14 @@ urlpatterns = [
|
|||
re_path(r'^user/(?P<username>\w+)/followers/?$', incoming.get_followers),
|
||||
re_path(r'^user/(?P<username>\w+)/following/?$', incoming.get_following),
|
||||
re_path(
|
||||
r'^user/(?P<username>\w+)/status/(?P<status_id>\d+)/?$',
|
||||
r'^user/(?P<username>\w+)/(status|review)/(?P<status_id>\d+)/?$',
|
||||
incoming.get_status
|
||||
),
|
||||
re_path(
|
||||
r'^user/(?P<username>\w+)/status/(?P<status_id>\d+)/activity/?$',
|
||||
r'^user/(?P<username>\w+)/(status|review)/(?P<status_id>\d+)/activity/?$',
|
||||
incoming.get_status
|
||||
),
|
||||
re_path(r'^user/(?P<username>\w+)/status/?$', incoming.get_following),
|
||||
re_path(r'^user/(?P<username>\w+)/(status|review)/?$', incoming.get_following),
|
||||
# TODO: shelves need pages in the UI and for their activitypub Collection
|
||||
|
||||
# .well-known endpoints
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue