mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
* chore: mobile configs * chore: mobile configurations changed * chore: removed the slack id * chore: reversed google client id
17 lines
357 B
Python
17 lines
357 B
Python
from django.urls import path
|
|
|
|
|
|
from plane.app.views import ConfigurationEndpoint, MobileConfigurationEndpoint
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"configs/",
|
|
ConfigurationEndpoint.as_view(),
|
|
name="configuration",
|
|
),
|
|
path(
|
|
"mobile-configs/",
|
|
MobileConfigurationEndpoint.as_view(),
|
|
name="configuration",
|
|
),
|
|
] |