mitgliederverwaltung/lib/accounts/token.ex

11 lines
226 B
Elixir

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