mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 12:34:12 +00:00
* Feat(CoinStats): Scaffold implementation, not yet functional * Feat(CoinStats): Implement crypto wallet balance and transactions * Feat(CoinStats): Add tests, Minor improvements * Feat(CoinStats): Utilize bulk fetch API endpoints * Feat(CoinStats): Migrate strings to i8n * Feat(CoinStats): Fix error handling in wallet link modal * Feat(CoinStats): Implement hourly provider sync job * Feat(CoinStats): Generate docstrings * Fix(CoinStats): Validate API Key on provider update * Fix(Providers): Safely handle race condition in merchance creation * Fix(CoinStats): Don't catch system signals in account processor * Fix(CoinStats): Preload before iterating accounts * Fix(CoinStats): Add no opener / referrer to API dashboard link * Fix(CoinStats): Use strict matching for symbols * Fix(CoinStats): Remove dead code in transactions importer * Fix(CoinStats): Avoid transaction fallback ID collisions * Fix(CoinStats): Improve Blockchains fetch error handling * Fix(CoinStats): Enforce NOT NULL constraint for API Key schema * Fix(CoinStats): Migrate sync status strings to i8n * Fix(CoinStats): Use class name rather than hardcoded string * Fix(CoinStats): Use account currency rather than hardcoded USD * Fix(CoinStats): Migrate from standalone to Provider class * Fix(CoinStats): Fix test failures due to string changes
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
<%= content_for :page_title, "Sync Providers" %>
|
|
|
|
<div class="space-y-4">
|
|
<div>
|
|
<p class="text-secondary mb-4">
|
|
Configure credentials for third-party sync providers. Settings configured here will override environment variables.
|
|
</p>
|
|
</div>
|
|
|
|
<% @provider_configurations.each do |config| %>
|
|
<% next if config.provider_key.to_s.casecmp("simplefin").zero? %>
|
|
<%= settings_section title: config.provider_key.titleize, collapsible: true, open: false do %>
|
|
<%= render "settings/providers/provider_form", configuration: config %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= settings_section title: "Lunch Flow", collapsible: true, open: false do %>
|
|
<turbo-frame id="lunchflow-providers-panel">
|
|
<%= render "settings/providers/lunchflow_panel" %>
|
|
</turbo-frame>
|
|
<% end %>
|
|
|
|
<%= settings_section title: "SimpleFIN", collapsible: true, open: false do %>
|
|
<turbo-frame id="simplefin-providers-panel">
|
|
<%= render "settings/providers/simplefin_panel" %>
|
|
</turbo-frame>
|
|
<% end %>
|
|
|
|
|
|
<%= settings_section title: "Enable Banking (beta)", collapsible: true, open: false do %>
|
|
<turbo-frame id="enable_banking-providers-panel">
|
|
<%= render "settings/providers/enable_banking_panel" %>
|
|
</turbo-frame>
|
|
<% end %>
|
|
|
|
<%= settings_section title: "CoinStats", collapsible: true, open: false do %>
|
|
<turbo-frame id="coinstats-providers-panel">
|
|
<%= render "settings/providers/coinstats_panel" %>
|
|
</turbo-frame>
|
|
<% end %>
|
|
</div>
|