Half-implement an IndieAuth authorization endpoint - it accepts the right parameters, verifies your client_id, and displays a prompt, but you can't actually approve the auth yet

This commit is contained in:
Danielle McLean 2017-10-26 11:35:57 +11:00
parent d234fd942d
commit 93be2f5a32
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
7 changed files with 145 additions and 1 deletions

View file

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