Files
sure/app/views/import/configurations/_rule_import.html.erb
Josh Waldrep d3055b2e0b refactor: remove SSO settings page; consolidate SSO identity management under Security settings
- Removed the `Settings::SsoIdentitiesController` and views for a simplified user experience.
- Moved SSO identity management to the Security settings page (`Settings::SecuritiesController`).
- Updated locale keys and layout for the new structure.
- Fixed unlink protection warnings and adjusted redirection path.
- Cleaned up routes, helper methods, and redundant code.
2026-01-03 20:49:31 -05:00

15 lines
608 B
Plaintext

<%# locals: (import:) %>
<div class="space-y-4">
<p class="text-sm text-secondary"><%= t("import.configurations.rule_import.description") %></p>
<%= styled_form_with model: import,
url: import_configuration_path(import),
scope: :import,
method: :patch,
class: "space-y-3" do |form| %>
<p class="text-sm text-secondary"><%= t("import.configurations.rule_import.process_help") %></p>
<%= form.submit t("import.configurations.rule_import.process_button"), disabled: import.complete? %>
<% end %>
</div>