<% if %w[archived integration].include?(params[:status]) %> <%= link_to t('view_active'), settings_users_path, class: 'link text-sm' %> <% else %> <% links = [] %> <% if current_account.users.active.exists?(role: 'integration') %> <% links << link_to(t('view_embedding_users'), settings_integration_users_path, class: 'link text-sm') %> <% end %> <% if current_account.users.archived.exists? %> <% links << link_to(t('view_archived'), settings_archived_users_path, class: 'link text-sm') %> <% end %> <%= links.join('|').html_safe %> <% end %>