7 lines
119 B
Python
7 lines
119 B
Python
|
"""API URLs"""
|
||
|
from authentik.brands.api import BrandViewSet
|
||
|
|
||
|
api_urlpatterns = [
|
||
|
("core/brands", BrandViewSet),
|
||
|
]
|