WIP feat: account live view - basic functionality
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Moritz 2025-07-17 22:07:44 +02:00
parent de4643349a
commit edb3978b64
Signed by: moritz
GPG key ID: 1020A035E5DD0824
8 changed files with 868 additions and 290 deletions

View file

@ -63,6 +63,14 @@ defmodule Mv.Accounts.User do
actions do
defaults [:read, :create, :destroy, :update]
create :create_user do
accept [:email]
end
update :update_user do
accept [:email]
end
read :get_by_subject do
description "Get a user by the subject claim in a JWT"
argument :subject, :string, allow_nil?: false