View Source Ash.Registry (ash v2.21.12)

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

Summary

Types

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.