# SPDX-FileCopyrightText: 2019 ash contributors # # SPDX-License-Identifier: MIT defmodule Ash.Resource.Change.BeforeAction do @moduledoc false use Ash.Resource.Change @doc false @spec change(Ash.Changeset.t(), keyword, Ash.Resource.Change.context()) :: Ash.Changeset.t() def change(changeset, opts, context) do Ash.Changeset.before_action( changeset, fn changeset -> opts[:callback].(changeset, context) end, prepend?: opts[:prepend?] ) end end