Login app working (#47)

Can login and create User object. Also now store user token info in db
(closes #48).
This commit is contained in:
2018-06-29 08:43:03 -04:00
parent 8b1344d453
commit e50d3d8476
15 changed files with 223 additions and 193 deletions

View File

@@ -2,6 +2,7 @@ from django.urls import path, include
from .views import *
app_name = 'graphs'
urlpatterns = [
path('artists/<str:user_secret>', artist_data,
name='display_artist_graph'),