This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
people/src/backend/plugins/la_suite/urls.py
Sabrina Demagny 594d3af0d0 (plugins) add endpoint to list SIRET of active organizations
Allow access to AccountService with right scope to list
SIRET of active communes
2025-04-04 08:47:24 +02:00

15 lines
322 B
Python

"""API URL Configuration for La Suite plugin"""
from rest_framework.routers import DefaultRouter
from .api.viewsets import ActiveOrganizationsSiret
router = DefaultRouter()
router.register(
"la-suite/v1.0/siret",
ActiveOrganizationsSiret,
basename="active-organization-sirets",
)
urlpatterns = router.urls