feat: add parser source dashboard and scheduling
All checks were successful
CI/CD Pipeline / Code Quality Checks (pull_request) Successful in 1m55s
CI/CD Pipeline / Run Tests (pull_request) Successful in 3m6s
CI/CD Pipeline / Run API Inventory E2E Tests (pull_request) Successful in 2m48s
CI/CD Pipeline / Telegram Notify Success (pull_request) Successful in 19s
All checks were successful
CI/CD Pipeline / Code Quality Checks (pull_request) Successful in 1m55s
CI/CD Pipeline / Run Tests (pull_request) Successful in 3m6s
CI/CD Pipeline / Run API Inventory E2E Tests (pull_request) Successful in 2m48s
CI/CD Pipeline / Telegram Notify Success (pull_request) Successful in 19s
This commit is contained in:
1
src/apps/user/__init__.py
Normal file
1
src/apps/user/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
"""Compatibility package for legacy apps.user imports."""
|
||||
3
src/apps/user/admin.py
Normal file
3
src/apps/user/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user admin module."""
|
||||
|
||||
from user.admin import * # noqa: F403
|
||||
3
src/apps/user/apps.py
Normal file
3
src/apps/user/apps.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user app config."""
|
||||
|
||||
from user.apps import * # noqa: F403
|
||||
3
src/apps/user/models.py
Normal file
3
src/apps/user/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user models."""
|
||||
|
||||
from user.models import * # noqa: F403
|
||||
3
src/apps/user/serializers.py
Normal file
3
src/apps/user/serializers.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user serializers."""
|
||||
|
||||
from user.serializers import * # noqa: F403
|
||||
3
src/apps/user/services.py
Normal file
3
src/apps/user/services.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user services."""
|
||||
|
||||
from user.services import * # noqa: F403
|
||||
3
src/apps/user/signals.py
Normal file
3
src/apps/user/signals.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user signals."""
|
||||
|
||||
from user.signals import * # noqa: F403
|
||||
3
src/apps/user/urls.py
Normal file
3
src/apps/user/urls.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user URLs."""
|
||||
|
||||
from user.urls import * # noqa: F403
|
||||
3
src/apps/user/views.py
Normal file
3
src/apps/user/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""Compatibility wrapper for the relocated user views."""
|
||||
|
||||
from user.views import * # noqa: F403
|
||||
Reference in New Issue
Block a user