Added Login and Signup Endpoints within Django

This commit is contained in:
2024-03-25 14:33:16 -04:00
parent 57e2da94ff
commit a92522f030
20 changed files with 539 additions and 0 deletions

5
backend/api/admin.py Normal file
View File

@@ -0,0 +1,5 @@
from django.contrib import admin
from api.models import PeerUser
# Register your models here.
admin.site.register(PeerUser)