2020-11-24 23:26:28 +01:00
|
|
|
from rest_framework_extensions.routers import NestedRegistryItem
|
|
|
|
|
|
|
|
from posthog.api.routing import DefaultRouterPlusPlus
|
2020-08-14 11:23:55 +02:00
|
|
|
|
2020-12-07 16:06:14 +01:00
|
|
|
from .api import debug_ch_queries, hooks, license
|
2020-08-14 11:23:55 +02:00
|
|
|
|
|
|
|
|
2020-11-24 23:26:28 +01:00
|
|
|
def extend_api_router(root_router: DefaultRouterPlusPlus, *, projects_router: NestedRegistryItem):
|
|
|
|
root_router.register(r"license", license.LicenseViewSet)
|
2020-12-07 16:06:14 +01:00
|
|
|
root_router.register(r"debug_ch_queries", debug_ch_queries.DebugCHQueries, "debug_ch_queries")
|
2020-11-24 23:26:28 +01:00
|
|
|
projects_router.register(r"hooks", hooks.HookViewSet, "project_hooks", ["team_id"])
|