From 42027c046c2c8a028ce66aa8744e7eb2957087f0 Mon Sep 17 00:00:00 2001 From: Ro Date: Sun, 3 Nov 2024 10:45:23 -0600 Subject: [PATCH] fix: Redact private key from logs and inspect --- lib/postland/accounts/user.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/postland/accounts/user.ex b/lib/postland/accounts/user.ex index 96bf26f..971aea6 100644 --- a/lib/postland/accounts/user.ex +++ b/lib/postland/accounts/user.ex @@ -11,7 +11,7 @@ defmodule Postland.Accounts.User do field :hashed_password, :string, redact: true field :current_password, :string, virtual: true, redact: true field :confirmed_at, :utc_datetime - field :private_key, :string + field :private_key, :string, redact: true field :public_key, :string timestamps(type: :utc_datetime)