1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

[PM-12607] Move key rotation to km ownership (#11709)

* Move key rotation to km ownership

* Fix build

* Move userkey rotation data provider abstraction to km ownership

* Move userkey rotation data provider abstraction to km ownership

* Fix linting

* Fix CODEOWNERS for key-management web

* Remove incorrect export

* Fix import error
This commit is contained in:
Bernd Schoolmann
2024-10-26 13:47:40 +02:00
committed by GitHub
parent c780cbc77e
commit e83dca529b
20 changed files with 15 additions and 16 deletions

View File

@@ -0,0 +1,9 @@
import { NgModule } from "@angular/core";
import { UserKeyRotationApiService } from "./user-key-rotation-api.service";
import { UserKeyRotationService } from "./user-key-rotation.service";
@NgModule({
providers: [UserKeyRotationService, UserKeyRotationApiService],
})
export class UserKeyRotationModule {}