* fix: slack integration workflow * dev: add slack client id as configuration * fix: clean up * fix: added env to turbo --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
12 lines
No EOL
207 B
Python
12 lines
No EOL
207 B
Python
from django.urls import path
|
|
|
|
|
|
from plane.api.views import ConfigurationEndpoint
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"configs/",
|
|
ConfigurationEndpoint.as_view(),
|
|
name="configuration",
|
|
),
|
|
] |