Compare commits

..

11 commits

Author SHA1 Message Date
06574a932d fix: formatting
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-24 17:07:20 +02:00
33d4fa66c8 fix: update email field given by oidc provider 2025-07-24 17:07:20 +02:00
7a75f8f526 feat: add user form tests 2025-07-24 17:07:20 +02:00
a09e2add2f feat: add missing translation 2025-07-24 17:07:20 +02:00
662e80cc74 feat: set password for new and for existing user 2025-07-24 17:07:20 +02:00
2e256a0206 feat: add user view tests 2025-07-24 17:07:20 +02:00
5959c9f545 feat: use layout from memberlist 2025-07-24 17:07:20 +02:00
df9966bb12 feat: account live view - basic functionality 2025-07-24 17:07:20 +02:00
fd8c853879 feat: account live view - generated files 2025-07-24 17:07:20 +02:00
681db5dc71 fix: set oidc_id from user_info["sub"] 2025-07-24 17:07:20 +02:00
5287a20b98 feat: activate ash_admin for Accounts and Membershiop domain
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-24 12:38:21 +02:00
2 changed files with 10 additions and 2 deletions

View file

@ -3,7 +3,11 @@ defmodule Mv.Accounts do
AshAuthentication specific domain to handle Authentication for users.
"""
use Ash.Domain,
extensions: [AshPhoenix]
extensions: [AshAdmin.Domain, AshPhoenix]
admin do
show? true
end
resources do
resource Mv.Accounts.User do

View file

@ -1,6 +1,10 @@
defmodule Mv.Membership do
use Ash.Domain,
extensions: [AshPhoenix]
extensions: [AshAdmin.Domain, AshPhoenix]
admin do
show? true
end
resources do
resource Mv.Membership.Member do