All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
- core/ → app/api_config/ - apps/backend_admin/ → app/backend_admin/ - apps/common/ → app/common/ - apps/promociones/ → app/promociones/ - manage.py → app/manage.py - Añadir app/requirements.txt - Actualizar todos los imports y referencias (DJANGO_SETTINGS_MODULE, ROOT_URLCONF, WSGI_APPLICATION, INSTALLED_APPS) - Actualizar Dockerfile con nuevo WORKDIR Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
166 B
Python
7 lines
166 B
Python
from django.urls import path
|
|
from .views import status_view
|
|
|
|
urlpatterns = [
|
|
# Ruta final: /admin/status/
|
|
path('status/', status_view, name='admin_status'),
|
|
] |