ash_sqlite/test/support/resources/manager.ex
2023-09-22 22:52:22 -04:00

39 lines
851 B
Elixir

defmodule AshSqlite.Test.Manager do
@moduledoc false
use Ash.Resource,
data_layer: AshSqlite.DataLayer
sqlite do
table("managers")
repo(AshSqlite.TestRepo)
end
actions do
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)
attribute(:code, :string, allow_nil?: false)
attribute(:must_be_present, :string, allow_nil?: false)
attribute(:role, :string)
end
relationships do
belongs_to :organization, AshSqlite.Test.Organization do
attribute_writable?(true)
end
end
end