ash_double_entry/lib/transfer/transfer.ex

35 lines
888 B
Elixir
Raw Normal View History

2023-07-22 12:27:52 +12:00
defmodule AshDoubleEntry.Transfer do
2023-08-19 16:17:07 +12:00
@moduledoc """
An extension for creating a double entry ledger transfer. See the getting started guide for more.
"""
2023-07-22 12:27:52 +12:00
@account %Spark.Dsl.Section{
name: :transfer,
schema: [
pre_check_identities_with: [
type: {:spark, Ash.Api},
doc: "An api to use to precheck generated identities. Required by certain data layers."
],
2023-07-22 12:27:52 +12:00
account_resource: [
type: Ash.OptionsHelpers.ash_resource(),
doc: "The resource to use for account balances",
required: true
],
balance_resource: [
type: {:spark, Ash.Resource},
doc: "The resource being used for balances"
2023-07-22 12:27:52 +12:00
]
]
}
@sections [@account]
@transformers [
AshDoubleEntry.Transfer.Transformers.AddStructure
]
use Spark.Dsl.Extension,
sections: @sections,
transformers: @transformers
end