- Full PWA support with offline capabilities - Comprehensive search across songs, playlists, and channels - Offline playlist manager with download tracking - Pre-built frontend for zero-build deployment - Docker-based deployment with docker compose - Material-UI dark theme interface - YouTube audio download and management - Multi-user authentication support
12 lines
468 B
Python
12 lines
468 B
Python
"""URL configuration for admin user management"""
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from user.views_admin import UserManagementViewSet, UserYouTubeAccountViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'users', UserManagementViewSet, basename='admin-users')
|
|
router.register(r'youtube-accounts', UserYouTubeAccountViewSet, basename='youtube-accounts')
|
|
|
|
urlpatterns = [
|
|
path('admin/', include(router.urls)),
|
|
]
|