1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 11:43:46 +00:00

[PM-19716][PM-19714] Move files to Data Insights & Reporting team (DIRT) ownership (#14571)

* Move access-intelligence and reports files from tools to dirt folder for new ownership. Update imports for these files

* Move bit-common/src/reports/risk-insights > dirt

* Update codeowners file for dirt team ownership

* Addressed linting issues by executing `npm run prettier`

---------

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Leslie Tilton
2025-05-06 03:32:48 -05:00
committed by GitHub
parent 72b585fb87
commit 5166a9c730
110 changed files with 39 additions and 36 deletions

View File

@@ -74,9 +74,9 @@ const routes: Routes = [
{
path: "member-access-report",
loadComponent: () =>
import(
"../../tools/reports/member-access-report/member-access-report.component"
).then((mod) => mod.MemberAccessReportComponent),
import("../../dirt/reports/member-access-report/member-access-report.component").then(
(mod) => mod.MemberAccessReportComponent,
),
data: {
titleId: "memberAccessReport",
},
@@ -87,7 +87,7 @@ const routes: Routes = [
{
path: "access-intelligence",
loadChildren: () =>
import("../../tools/access-intelligence/access-intelligence.module").then(
import("../../dirt/access-intelligence/access-intelligence.module").then(
(m) => m.AccessIntelligenceModule,
),
},