Files
sure/app/controllers/settings/bank_sync_controller.rb
2026-03-31 15:27:38 +02:00

37 lines
1.2 KiB
Ruby

class Settings::BankSyncController < ApplicationController
layout "settings"
def show
@providers = [
{
name: "Lunch Flow",
description: "US, Canada, UK, EU, Brazil and Asia through multiple open banking providers.",
path: "https://lunchflow.app/features/sure-integration?atp=BiDIYS",
target: "_blank",
rel: "noopener noreferrer"
},
{
name: "Plaid",
description: "US & Canada bank connections with transactions, investments, and liabilities.",
path: "https://github.com/we-promise/sure/blob/main/docs/hosting/plaid.md",
target: "_blank",
rel: "noopener noreferrer"
},
{
name: "SimpleFIN",
description: "US & Canada connections via SimpleFIN protocol.",
path: "https://beta-bridge.simplefin.org",
target: "_blank",
rel: "noopener noreferrer"
},
{
name: "Enable Banking (beta)",
description: "European bank connections via open banking APIs across multiple countries.",
path: "https://enablebanking.com",
target: "_blank",
rel: "noopener noreferrer"
}
]
end
end