mirror of
https://github.com/we-promise/sure.git
synced 2026-05-09 13:45:01 +00:00
* Initial implementation * Tiingo fixes * Adds 2 providers, remove 2 * Add extra checks * FIX a big hotwire race condition // Fix hotwire_combobox race condition: when typing quickly, a slow response for // an early query (e.g. "A") can overwrite the correct results for the final query // (e.g. "AAPL"). We abort the previous in-flight request whenever a new one fires, // so stale Turbo Stream responses never reach the DOM. * pipelock * Update price_test.rb * Reviews * i8n * fixes * fixes * Update tiingo.rb * fixes * Improvements * Big revamp * optimisations * Update 20260408151837_add_offline_reason_to_securities.rb * Add missing tests, fixes * small rank tests * FIX tests * Update show.html.erb * Update resolver.rb * Update usd_converter.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update _yahoo_finance_settings.html.erb
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
<%= content_for :page_title, t(".title") %>
|
|
<%= settings_section title: t(".ai_assistant") do %>
|
|
<%= render "settings/hostings/assistant_settings" %>
|
|
<% end %>
|
|
<%= settings_section title: t(".general") do %>
|
|
<div class="space-y-6">
|
|
<%= render "settings/hostings/openai_settings" %>
|
|
<%= render "settings/hostings/brand_fetch_settings" %>
|
|
</div>
|
|
<% end %>
|
|
<%= settings_section title: t(".financial_data_providers") do %>
|
|
<div class="space-y-6">
|
|
<%= render "settings/hostings/provider_selection" %>
|
|
<% if @show_yahoo_finance_settings %>
|
|
<%= render "settings/hostings/yahoo_finance_settings" %>
|
|
<% end %>
|
|
<% if @show_twelve_data_settings %>
|
|
<%= render "settings/hostings/twelve_data_settings" %>
|
|
<% end %>
|
|
<% if @show_tiingo_settings %>
|
|
<%= render "settings/hostings/tiingo_settings" %>
|
|
<% end %>
|
|
<% if @show_eodhd_settings %>
|
|
<%= render "settings/hostings/eodhd_settings" %>
|
|
<% end %>
|
|
<% if @show_alpha_vantage_settings %>
|
|
<%= render "settings/hostings/alpha_vantage_settings" %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<%= settings_section title: t(".sync_settings") do %>
|
|
<%= render "settings/hostings/sync_settings" %>
|
|
<% end %>
|
|
<% if Current.user.super_admin? %>
|
|
<%= settings_section title: t(".invites") do %>
|
|
<%= render "settings/hostings/invite_code_settings" %>
|
|
<% end %>
|
|
<% end %>
|
|
<%= settings_section title: t(".danger_zone") do %>
|
|
<%= render "settings/hostings/danger_zone_settings" %>
|
|
<% end %>
|