ash_authentication/test/support/example/token.ex

15 lines
257 B
Elixir

defmodule Example.Token do
@moduledoc false
use Ash.Resource,
data_layer: AshPostgres.DataLayer,
extensions: [AshAuthentication.TokenResource]
postgres do
table("tokens")
repo(Example.Repo)
end
token do
api Example
end
end