Set up ping

This commit is contained in:
Praneeth Bhandaru 2020-12-12 15:34:20 -05:00
parent 394a3be380
commit 9ba3c8b98e
4 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,5 @@
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin
from .models import User
# Register your models here.
admin.site.register(User, UserAdmin)

View File

@ -1,3 +1,7 @@
from django.db import models
from django.contrib.auth.models import AbstractUser
# Create your models here.
class User(AbstractUser):
pass

View File

@ -16,6 +16,7 @@ Including another URLconf
from django.urls import path
from .views import *
urlpatterns = [
# path('', ),
path('ping/', PingView.as_view()),
]

View File

@ -134,3 +134,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/3.1/howto/static-files/
STATIC_URL = '/static/'
## Custom
AUTH_USER_MODEL = 'api.User'