% content_for :title, "Forward Auth Rules" %>
A list of all forward authentication rules for domain-based access control.
| Domain Pattern | Groups | Status | Actions |
|---|---|---|---|
| <%= rule.domain_pattern %> |
<% if rule.allowed_groups.any? %>
<% rule.allowed_groups.each do |group| %>
<%= group.name %>
<% end %>
<% else %>
Bypass (All Users)
<% end %>
|
<% if rule.active? %> Active <% else %> Inactive <% end %> | <%= link_to "Edit", edit_admin_forward_auth_rule_path(rule), class: "text-blue-600 hover:text-blue-900 mr-4" %> <%= link_to "Delete", admin_forward_auth_rule_path(rule), data: { turbo_method: :delete, turbo_confirm: "Are you sure you want to delete this forward auth rule?" }, class: "text-red-600 hover:text-red-900" %> |
Get started by creating a new forward authentication rule.