ash_postgres/test/support/resources/manager.ex
Zach Daniel 37cc01957d
improvement!: 3.0 (#227)
* WIP

* chore: fix mix.lock merge issues

* improvement: upgrade to 3.0

* chore: remove `repo.to_tenant`

* chore: continue removal of unnecessary helper

* chore: use `Ash.ToTenant`
2024-03-27 16:52:28 -04:00

43 lines
1,002 B
Elixir

defmodule AshPostgres.Test.Manager do
@moduledoc false
use Ash.Resource,
domain: AshPostgres.Test.Domain,
data_layer: AshPostgres.DataLayer
postgres do
table("managers")
repo(AshPostgres.TestRepo)
end
actions do
default_accept(:*)
defaults([:read, :update, :destroy])
create :create do
primary?(true)
argument(:organization_id, :uuid, allow_nil?: false)
change(manage_relationship(:organization_id, :organization, type: :append_and_remove))
end
end
identities do
identity(:uniq_code, :code)
end
attributes do
uuid_primary_key(:id)
attribute(:name, :string, public?: true)
attribute(:code, :string, allow_nil?: false, public?: true)
attribute(:must_be_present, :string, allow_nil?: false, public?: true)
attribute(:role, :string, public?: true)
end
relationships do
belongs_to :organization, AshPostgres.Test.Organization do
public?(true)
attribute_writable?(true)
end
end
end