This commit is contained in:
Iliyan Angelov
2025-11-24 08:18:18 +02:00
parent 366f28677a
commit 136f75a859
133 changed files with 14977 additions and 3350 deletions

11
backEnd/home/urls.py Normal file
View File

@@ -0,0 +1,11 @@
from django.urls import path
from . import views
app_name = 'home'
urlpatterns = [
# Banner endpoints
path('banner/', views.HomeBannerListAPIView.as_view(), name='home-banner-list'),
path('banner/<int:pk>/', views.HomeBannerDetailAPIView.as_view(), name='home-banner-detail'),
]