zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

commit e13fef53c38236b92cae8735001720dc9524c910
parent 9a0c54d33e32d11c11018f07429b389a999e6fc3
Author: srfsh <dev@srf.sh>
Date:   Tue, 19 Jul 2022 18:24:03 +0300

vf/agent: split pubkeys into separate fields and change type to string

Diffstat:
Msrc/zenflows/vf/agent.ex | 14++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/zenflows/vf/agent.ex b/src/zenflows/vf/agent.ex @@ -35,7 +35,12 @@ alias Zenflows.VF.SpatialThing # person user: String.t() | nil, email: String.t() | nil, - pubkeys: binary() | nil, + dilithium_public_key: String.t() | nil, + ecdh_public_key: String.t() | nil, + eddsa_public_key: String.t() | nil, + ethereum_address: String.t() | nil, + reflow_public_key: String.t() | nil, + schnorr_public_key: String.t() | nil, # organization classified_as: [String.t()] | nil, @@ -52,7 +57,12 @@ schema "vf_agent" do # person field :user, :string field :email, :string - field :pubkeys, :binary + field :dilithium_public_key, :string + field :ecdh_public_key, :string + field :eddsa_public_key, :string + field :ethereum_address, :string + field :reflow_public_key, :string + field :schnorr_public_key, :string # organization field :classified_as, {:array, :string}