Reverting back to admin pages as login and updates in the mobile api

This commit is contained in:
Vivek
2025-12-17 22:05:13 +05:30
parent 48c8abb366
commit 105da4a876
39 changed files with 2147 additions and 452 deletions

0
web_api/__init__.py Normal file
View File

3
web_api/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
web_api/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class WebApiConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'web_api'

View File

3
web_api/models.py Normal file
View File

@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
web_api/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

View File

@@ -0,0 +1,2 @@
from .user import *
from .events import *

0
web_api/views/events.py Normal file
View File