1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

Move autofillConstants to autofill folder (#4830)

* Move autofillConstants to autofill folder

* Remove autofillConstants from whitelist capital

* Add vault team as code owners for autofill folder

* Update codeowners for web
This commit is contained in:
Robyn MacCallum
2023-02-22 16:03:05 -05:00
committed by GitHub
parent c594f23121
commit 80c2f20f58
4 changed files with 7 additions and 7 deletions

View File

@@ -12,11 +12,6 @@ import { FieldView } from "@bitwarden/common/vault/models/view/field.view";
import { BrowserApi } from "../../browser/browserApi";
import { BrowserStateService } from "../../services/abstractions/browser-state.service";
import {
AutoFillConstants,
CreditCardAutoFillConstants,
IdentityAutoFillConstants,
} from "../../services/autofillConstants";
import AutofillField from "../models/autofill-field";
import AutofillPageDetails from "../models/autofill-page-details";
import AutofillScript from "../models/autofill-script";
@@ -27,6 +22,11 @@ import {
PageDetail,
FormData,
} from "./abstractions/autofill.service";
import {
AutoFillConstants,
CreditCardAutoFillConstants,
IdentityAutoFillConstants,
} from "./autofill-constants";
export interface GenerateFillScriptOptions {
skipUsernameOnlyFill: boolean;