Adds back home/local/federated tabs

I don't think this is how I want the UI to work in the long run,
but for now it's better than not having it.
Fixes #210
This commit is contained in:
Mouse Reeve
2020-10-05 13:34:43 -07:00
parent 9c83d68a80
commit 8d9474275e
3 changed files with 23 additions and 1 deletions

View File

@ -45,6 +45,7 @@ urlpatterns = [
re_path(r'^invite/(?P<code>[A-Za-z0-9]+)/?$', views.invite_page),
path('', views.home),
re_path(r'^(?P<tab>home|local|federated)/?$', views.home_tab),
re_path(r'^notifications/?', views.notifications_page),
re_path(r'import/?$', views.import_page),
re_path(r'import_status/(\d+)/?$', views.import_status),