mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 15:24:48 +00:00
37 lines
1.2 KiB
Ruby
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
|