1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

[AC-2631] Add device-approval command scaffolding (#9351)

* Add device-approval scaffolding

* Refactor: move helpers to BaseProgram

* Update CODEOWNERS
This commit is contained in:
Thomas Rittson
2024-05-27 11:03:23 +10:00
committed by GitHub
parent 89d7e96b25
commit c0bb7b9edf
15 changed files with 333 additions and 160 deletions

View File

@@ -0,0 +1,9 @@
import { Response } from "@bitwarden/cli/models/response";
export class DenyAllCommand {
constructor() {}
async run(organizationId: string): Promise<Response> {
throw new Error("Not implemented");
}
}