code cleanup

This commit is contained in:
Hugh Rundle
2021-11-28 21:38:28 +11:00
parent f828f36cc5
commit e9bb2a04a4
7 changed files with 37 additions and 26 deletions

View File

@ -453,5 +453,7 @@ urlpatterns = [
re_path(r"^delete-follow-request/?$", views.delete_follow_request),
re_path(r"^ostatus_follow/?$", views.remote_follow, name="remote-follow"),
re_path(r"^remote_follow/?$", views.remote_follow_page, name="remote-follow-page"),
re_path(r"^ostatus_success/?$", views.ostatus_follow_success, name="ostatus-success"),
re_path(
r"^ostatus_success/?$", views.ostatus_follow_success, name="ostatus-success"
),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)