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

This commit is contained in:
2026-04-28 01:08:51 +02:00
parent 1249071a33
commit 26d61f7181
58 changed files with 7713 additions and 141 deletions

View File

@@ -0,0 +1 @@
"""Compatibility package for legacy apps.user imports."""

3
src/apps/user/admin.py Normal file
View 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
View 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
View File

@@ -0,0 +1,3 @@
"""Compatibility wrapper for the relocated user models."""
from user.models import * # noqa: F403

View File

@@ -0,0 +1,3 @@
"""Compatibility wrapper for the relocated user serializers."""
from user.serializers import * # noqa: F403

View 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
View 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
View 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
View File

@@ -0,0 +1,3 @@
"""Compatibility wrapper for the relocated user views."""
from user.views import * # noqa: F403