mitgliederverwaltung/lib/accounts/user_identity.exs
carla e0f26c6164
Some checks are pending
continuous-integration/drone/push Build is pending
doc: added comments and updated to latest ashautentication version and required changes
2025-06-19 15:34:24 +02:00

18 lines
364 B
Elixir

defmodule Mv.Accounts.UserIdentity do
@moduledoc """
AshAuthentication specific ressource
"""
use Ash.Resource,
data_layer: AshPostgres.DataLayer,
extensions: [AshAuthentication.UserIdentity],
domain: Mv.Accounts
postgres do
table "user_identities"
repo Mv.Repo
end
user_identity do
user_resource Mv.Accounts.User
end
end