We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee73c32 commit 5ef3aedCopy full SHA for 5ef3aed
documentation/tutorials/getting-started-with-ash-double-entry.md
@@ -204,7 +204,7 @@ And add the domain to your config
204
```elixir
205
YourApp.Ledger.Account
206
|> Ash.Changeset.for_create(:open, %{identifier: "account_one"})
207
-|> YourApp.Ledger.create!()
+|> Ash.create!()
208
```
209
210
#### Create transfers between accounts
@@ -216,7 +216,7 @@ YourApp.Ledger.Transfer
216
from_account_id: account_one.id,
217
to_account_id: account_two.id
218
})
219
220
221
222
#### Update existing transfers
0 commit comments