Implement more information displays
This commit is contained in:
15
app/urls.py
15
app/urls.py
@@ -139,6 +139,11 @@ urlpatterns = [
|
||||
compose.ComposeSummary.as_view(),
|
||||
name="compose_summary",
|
||||
),
|
||||
path(
|
||||
"compose/quick-insights/",
|
||||
compose.ComposeQuickInsights.as_view(),
|
||||
name="compose_quick_insights",
|
||||
),
|
||||
path(
|
||||
"compose/engage/preview/",
|
||||
compose.ComposeEngagePreview.as_view(),
|
||||
@@ -175,11 +180,21 @@ urlpatterns = [
|
||||
workspace.AIWorkspacePersonWidget.as_view(),
|
||||
name="ai_workspace_person",
|
||||
),
|
||||
path(
|
||||
"ai/workspace/<str:type>/person/<uuid:person_id>/timeline/",
|
||||
workspace.AIWorkspacePersonTimelineWidget.as_view(),
|
||||
name="ai_workspace_person_timeline",
|
||||
),
|
||||
path(
|
||||
"ai/workspace/<str:type>/person/<uuid:person_id>/insights/graphs/",
|
||||
workspace.AIWorkspaceInsightGraphs.as_view(),
|
||||
name="ai_workspace_insight_graphs",
|
||||
),
|
||||
path(
|
||||
"ai/workspace/<str:type>/person/<uuid:person_id>/information/",
|
||||
workspace.AIWorkspaceInformation.as_view(),
|
||||
name="ai_workspace_information",
|
||||
),
|
||||
path(
|
||||
"ai/workspace/<str:type>/person/<uuid:person_id>/insights/help/",
|
||||
workspace.AIWorkspaceInsightHelp.as_view(),
|
||||
|
||||
Reference in New Issue
Block a user