diff --git a/app/modules/workspace_navigation/service.py b/app/modules/workspace_navigation/service.py index 627ca7a..eb9013f 100644 --- a/app/modules/workspace_navigation/service.py +++ b/app/modules/workspace_navigation/service.py @@ -105,15 +105,6 @@ def build_workspace_cards(roles: Iterable[str] | None, permissions: Iterable[str priority=70, )) - # Reports centre is available as a role-aware workspace for every authenticated user. - cards.append(WorkspaceCard( - code="reports", - title="Reports Centre", - description="Role-aware reports grouped by work, clients, billing, HR, system and audit areas.", - url="/reports", - badge="Reports", - priority=90, - )) return sorted(cards, key=lambda card: card.priority) @@ -134,6 +125,4 @@ def current_workspace_code(current_path: str | None) -> str: return "client" if path.startswith("/consultant"): return "consultant" - if path.startswith("/reports"): - return "reports" return "" diff --git a/app/modules/workspace_navigation/templates/workspace_navigation/index.html b/app/modules/workspace_navigation/templates/workspace_navigation/index.html index bdda384..aa0b62b 100644 --- a/app/modules/workspace_navigation/templates/workspace_navigation/index.html +++ b/app/modules/workspace_navigation/templates/workspace_navigation/index.html @@ -7,9 +7,9 @@
Open the workspace allowed for your role. This page does not replace any existing module; it only gives a clean entry point to dashboards and reports.
+Open the workspace allowed for your role. This page does not replace any existing module; it only gives a clean entry point to dashboards and portals.