mitgliederverwaltung/lib/accounts/token.ex
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

14 lines
288 B
Elixir

defmodule Mv.Accounts.Token do
@moduledoc """
AshAuthentication specific ressource
"""
use Ash.Resource,
data_layer: AshPostgres.DataLayer,
extensions: [AshAuthentication.TokenResource],
domain: Mv.Accounts
postgres do
table "tokens"
repo Mv.Repo
end
end