Adds home/local/federated feeds to home

Fixes #38
This commit is contained in:
Mouse Reeve
2020-02-19 18:02:11 -08:00
parent 16a39e1183
commit 248fe64537
4 changed files with 43 additions and 52 deletions

View File

@ -38,7 +38,8 @@ urlpatterns = [
# TODO: re_path(r'^.well-known/host-meta/?$', incoming.host_meta),
# ui views
path(r'', views.home),
path('', views.home),
re_path(r'^(?P<tab>home|local|federated)/?$', views.home_tab),
re_path(r'^register/?$', views.register),
re_path(r'^login/?$', views.user_login),
re_path(r'^logout/?$', views.user_logout),