Ash Authentication

<%= if Enum.any?(@resources) do %>

Resources:

<%= for {resource, options, strategies} <- @resources do %>

<%= inspect(options.subject_name) %> - <%= Ash.Domain.Info.short_name(options.api) %> / <%= Ash.Resource.Info.short_name(resource) %>

<%= for strategy <- strategies do %> <%= for phase <- Strategy.phases(strategy) do %> <%= render_strategy(strategy, phase, options) %> <% end %> <% end %> <% end %>

Validate token


<% else %>

No resources configured
Please see the documentation for more information.

<% end %> <%= if Enum.any?(@current_users) do %>

Current users:

Clear session <%= for {name, user} <- @current_users do %> <% end %>
Name Value
@<%= name %>
<%= inspect user, pretty: true %>
<% end %>