-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pm-11505-delete-the-feature-flag-pm-5864-dol…
…lar-threshold
- Loading branch information
Showing
34 changed files
with
103 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
apps/web/src/app/tools/access-intelligence/access-intelligence.module.ts
This file was deleted.
Oops, something went wrong.
120 changes: 0 additions & 120 deletions
120
apps/web/src/app/tools/access-intelligence/password-health-members.component.html
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
apps/web/src/app/tools/risk-insights/password-health-members.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<p>{{ "passwordsReportDesc" | i18n }}</p> | ||
<div *ngIf="loading"> | ||
<i | ||
class="bwi bwi-spinner bwi-spin tw-text-muted" | ||
title="{{ 'loading' | i18n }}" | ||
aria-hidden="true" | ||
></i> | ||
<span class="tw-sr-only">{{ "loading" | i18n }}</span> | ||
</div> | ||
<div class="tw-flex tw-flex-col" *ngIf="!loading && dataSource.data.length"> | ||
<bit-table [dataSource]="dataSource"> | ||
<ng-container header> | ||
<tr bitRow> | ||
<th bitCell></th> | ||
<th bitCell bitSortable="name">{{ "name" | i18n }}</th> | ||
<th bitCell class="tw-text-right">{{ "weakness" | i18n }}</th> | ||
<th bitCell class="tw-text-right">{{ "timesReused" | i18n }}</th> | ||
<th bitCell class="tw-text-right">{{ "timesExposed" | i18n }}</th> | ||
<th bitCell class="tw-text-right">{{ "totalMembers" | i18n }}</th> | ||
</tr> | ||
</ng-container> | ||
<ng-template body let-rows$> | ||
<tr bitRow *ngFor="let r of rows$ | async; trackBy: trackByFunction"> | ||
<td bitCell> | ||
<input | ||
bitCheckbox | ||
type="checkbox" | ||
[checked]="selectedIds.has(r.id)" | ||
(change)="onCheckboxChange(r.id, $event)" | ||
/> | ||
</td> | ||
<td bitCell> | ||
<ng-container> | ||
<span>{{ r.name }}</span> | ||
</ng-container> | ||
<br /> | ||
<small>{{ r.subTitle }}</small> | ||
</td> | ||
<td bitCell class="tw-text-right"> | ||
<span | ||
bitBadge | ||
*ngIf="passwordStrengthMap.has(r.id)" | ||
[variant]="passwordStrengthMap.get(r.id)[1]" | ||
> | ||
{{ passwordStrengthMap.get(r.id)[0] | i18n }} | ||
</span> | ||
</td> | ||
<td bitCell class="tw-text-right"> | ||
<span bitBadge *ngIf="passwordUseMap.has(r.login.password)" variant="warning"> | ||
{{ "reusedXTimes" | i18n: passwordUseMap.get(r.login.password) }} | ||
</span> | ||
</td> | ||
<td bitCell class="tw-text-right"> | ||
<span bitBadge *ngIf="exposedPasswordMap.has(r.id)" variant="warning"> | ||
{{ "exposedXTimes" | i18n: exposedPasswordMap.get(r.id) }} | ||
</span> | ||
</td> | ||
<td bitCell class="tw-text-right" data-testid="total-membership"> | ||
{{ totalMembersMap.get(r.id) || 0 }} | ||
</td> | ||
</tr> | ||
</ng-template> | ||
</bit-table> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...igence/access-intelligence.component.html → ...isk-insights/risk-insights.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { NgModule } from "@angular/core"; | ||
|
||
import { RiskInsightsRoutingModule } from "./risk-insights-routing.module"; | ||
import { RiskInsightsComponent } from "./risk-insights.component"; | ||
|
||
@NgModule({ | ||
imports: [RiskInsightsComponent, RiskInsightsRoutingModule], | ||
}) | ||
export class RiskInsightsModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.