Skip to content

Commit

Permalink
fix(anonymizer): update default password
Browse files Browse the repository at this point in the history
  • Loading branch information
gary-van-woerkens committed Jun 22, 2024
1 parent 18a8da2 commit 0aab140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .anonymizer/ts-transformers/user-usager--password.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { hashSync } from "bcryptjs"
import { main } from "./common/lib"

const __HASHED__PASSWORD__ = hashSync("DOMIFA_ANONYMIZER_PASSWORD", 10)
const __HASHED__PASSWORD__ = hashSync("domiF4_fakepwd", 10)

function anonymize(values: Record<string, any>) {
values.password = __HASHED__PASSWORD__
Expand Down

0 comments on commit 0aab140

Please sign in to comment.