Give better 'me' normalisation to IndieAuth processing + Aadd a simple POST route for actually submitting the form

This commit is contained in:
Danielle McLean 2017-10-29 14:39:30 +11:00
parent 6bdcce1844
commit 221d548e4a
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
4 changed files with 38 additions and 21 deletions

View file

@ -6,4 +6,5 @@ urlpatterns = [
url('^login$', views.login, name='login'),
url('^logout$', views.logout, name='logout'),
url('^indie$', views.IndieView.as_view(), name='indie'),
url('^indie/approve$', views.indie_approve, name='indie_approve'),
]