mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 06:49:37 +02:00
feat: add Immich integration view and API documentation, enhance error handling, and include SVG asset
This commit is contained in:
parent
15fd15ba40
commit
67f6af8ca3
8 changed files with 209 additions and 35 deletions
|
@ -1,10 +1,11 @@
|
|||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
from integrations.views import ImmichIntegrationView
|
||||
from integrations.views import ImmichIntegrationView, IntegrationView
|
||||
|
||||
# Create the router and register the ViewSet
|
||||
router = DefaultRouter()
|
||||
router.register(r'immich', ImmichIntegrationView, basename='immich')
|
||||
router.register(r'', IntegrationView, basename='integrations')
|
||||
|
||||
# Include the router URLs
|
||||
urlpatterns = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue