From 1abb20d4871dcf8ab07f3f327fd3cbe65a22a9b1 Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Sun, 7 Nov 2021 18:45:40 +0100 Subject: auth features --- chat_api/__init__.py | 0 chat_api/admin.py | 3 +++ chat_api/apps.py | 6 ++++++ chat_api/migrations/__init__.py | 0 chat_api/models.py | 3 +++ chat_api/tests.py | 3 +++ chat_api/urls.py | 5 +++++ chat_api/views.py | 3 +++ 8 files changed, 23 insertions(+) create mode 100644 chat_api/__init__.py create mode 100644 chat_api/admin.py create mode 100644 chat_api/apps.py create mode 100644 chat_api/migrations/__init__.py create mode 100644 chat_api/models.py create mode 100644 chat_api/tests.py create mode 100644 chat_api/urls.py create mode 100644 chat_api/views.py (limited to 'chat_api') diff --git a/chat_api/__init__.py b/chat_api/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/chat_api/admin.py b/chat_api/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/chat_api/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/chat_api/apps.py b/chat_api/apps.py new file mode 100644 index 0000000..89f7109 --- /dev/null +++ b/chat_api/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ChatApiConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'chat_api' diff --git a/chat_api/migrations/__init__.py b/chat_api/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/chat_api/models.py b/chat_api/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/chat_api/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/chat_api/tests.py b/chat_api/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/chat_api/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/chat_api/urls.py b/chat_api/urls.py new file mode 100644 index 0000000..d2d839f --- /dev/null +++ b/chat_api/urls.py @@ -0,0 +1,5 @@ +from django.urls import path + +urlpatterns = [ + +] diff --git a/chat_api/views.py b/chat_api/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/chat_api/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. -- cgit v1.2.3