Reverting back to admin pages as login and updates in the mobile api
This commit is contained in:
0
web_api/__init__.py
Normal file
0
web_api/__init__.py
Normal file
3
web_api/admin.py
Normal file
3
web_api/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
6
web_api/apps.py
Normal file
6
web_api/apps.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class WebApiConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'web_api'
|
||||
0
web_api/migrations/__init__.py
Normal file
0
web_api/migrations/__init__.py
Normal file
3
web_api/models.py
Normal file
3
web_api/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
web_api/tests.py
Normal file
3
web_api/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
2
web_api/views/__init__.py
Normal file
2
web_api/views/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from .user import *
|
||||
from .events import *
|
||||
0
web_api/views/events.py
Normal file
0
web_api/views/events.py
Normal file
Reference in New Issue
Block a user