Compare commits

..

10 commits

Author SHA1 Message Date
a6f9de3eab
fix: formatting
All checks were successful
continuous-integration/drone/push Build is passing
2025-07-23 00:04:03 +02:00
ff9b3bc5f3
fix: update email field given by oidc provider
Some checks failed
continuous-integration/drone/push Build is failing
2025-07-22 23:59:01 +02:00
55943d0640
feat: add user form tests 2025-07-22 23:05:58 +02:00
778700d5c3
feat: add missing translation 2025-07-22 23:05:57 +02:00
80903a48fe
feat: set password for new and for existing user 2025-07-22 23:05:57 +02:00
0cc740b5b6
feat: add user view tests 2025-07-22 23:05:57 +02:00
4846961d7a
feat: use layout from memberlist 2025-07-22 23:05:56 +02:00
d78d416d89
feat: account live view - basic functionality 2025-07-22 23:05:50 +02:00
4f74d54128
feat: account live view - generated files 2025-07-22 19:45:13 +02:00
25919470d9
fix: set oidc_id from user_info["sub"] 2025-07-22 19:45:13 +02:00
2 changed files with 2 additions and 10 deletions

View file

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

View file

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