527ffc42b9
Skipping API responses, where we need absolute URLs, and those that are intended for sharing or external use: - account/join_codes/show.html.erb - Join code URL for sharing - boards/edit/_publication.html.erb - Publication URL for sharing - public/* views - Public page URLs and og:url meta tags - pwa/manifest.json.erb - PWA manifest needs absolute URLs For this, we had to replace `url_for` used with Active Storage variants and previews with the specific path helper (for Active Storage representations).
11 lines
417 B
Plaintext
11 lines
417 B
Plaintext
<% if accounts.many? %>
|
|
<% cache [ Current.identity, accounts, Current.account ] do %>
|
|
<%= collapsible_nav_section "Accounts" do %>
|
|
<%# Bust cache 1 Dec 2025 %>
|
|
<% accounts.each do |account| %>
|
|
<%= filter_place_menu_item landing_path(script_name: account.slug), account.name, "marker", current: account == Current.account, turbo: false %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|