View Source Ash.Registry (ash v2.11.8)

A registry allows you to separate your resources from your api module, to reduce improve compile times and reduce compile time dependencies.

For example:

defmodule MyApp.MyRegistry do
  use Ash.Registry

  entries do
    entry MyApp.Resource
    entry MyApp.OtherResource
  end
end

Link to this section Summary

Link to this section Types

Link to this section Functions

This function is deprecated. use Ash.Registry.Info.entries/1 instead.

See Ash.Registry.Info.entries/1.

Link to this function

warn_on_empty?(registry)

View Source
This function is deprecated. use Ash.Registry.Info.warn_on_empty?/1 instead.

See Ash.Registry.Info.warn_on_empty?/1.