1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[PM-26430] Remove Type property from PolicyRequestModel to use route parameter only (#16960)

* Remove Type property from PolicyRequestModel to use route parameter only

* Remove PolicyType property from policy update request in auto-confirm edit policy dialog

* Run prettier
This commit is contained in:
Rui Tomé
2025-11-10 15:27:48 +00:00
committed by GitHub
parent ed53ef19d9
commit cb863b44d5
4 changed files with 0 additions and 6 deletions

View File

@@ -1,7 +1,4 @@
import { PolicyType } from "../../enums";
export type PolicyRequest = {
type: PolicyType;
enabled: boolean;
data: any;
};