mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
* SM-281: Initial commit with trash component setup * SM-281: Customize secrets list component, add ability to hard delete secrets * SM-281: Add support for restoring secrets in SM * SM-281: restoreSecret emit values as an array * SM-281: Fix bug caused by mistake when doing merge conflict resolution * SM-281: Clean up TrashService and move more functionality to TrashApiService * Cleanup responses * Merge TrashService and SecretService * Remove tw-text-sm from dialogs * Split delete into two components * Change secrets table to have a single boolean for trash * SM-281: Rename component to secret-hard-delete * Remove unused organizationId * Remove duplicate buttons --------- Co-authored-by: Hinton <hinton@users.noreply.github.com>
16 lines
620 B
TypeScript
16 lines
620 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { SecretsManagerSharedModule } from "../shared/sm-shared.module";
|
|
|
|
import { SecretHardDeleteDialogComponent } from "./dialog/secret-hard-delete.component";
|
|
import { SecretRestoreDialogComponent } from "./dialog/secret-restore.component";
|
|
import { TrashRoutingModule } from "./trash-routing.module";
|
|
import { TrashComponent } from "./trash.component";
|
|
|
|
@NgModule({
|
|
imports: [SecretsManagerSharedModule, TrashRoutingModule],
|
|
declarations: [SecretHardDeleteDialogComponent, SecretRestoreDialogComponent, TrashComponent],
|
|
providers: [],
|
|
})
|
|
export class TrashModule {}
|