forked from github/plane
12 lines
207 B
Python
12 lines
207 B
Python
from django.urls import path
|
|
|
|
|
|
from plane.app.views import ConfigurationEndpoint
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"configs/",
|
|
ConfigurationEndpoint.as_view(),
|
|
name="configuration",
|
|
),
|
|
] |