mirror of
https://github.com/we-promise/sure.git
synced 2026-05-30 07:49:01 +00:00
* Display multi-currency holdings correctly * Implement IBKR provider * Fix: Use historical exchange rate for historical prices * Add brokerage exchange rate for trades * Sync historical balances from IBKR * Add logos in activity history * Fix privacy mode blur in account view * Improve IBKR XML Flex report parser errors
19 lines
411 B
Ruby
19 lines
411 B
Ruby
class DataEnrichment < ApplicationRecord
|
|
belongs_to :enrichable, polymorphic: true
|
|
|
|
enum :source, {
|
|
rule: "rule",
|
|
plaid: "plaid",
|
|
simplefin: "simplefin",
|
|
lunchflow: "lunchflow",
|
|
synth: "synth",
|
|
ai: "ai",
|
|
enable_banking: "enable_banking",
|
|
coinstats: "coinstats",
|
|
mercury: "mercury",
|
|
indexa_capital: "indexa_capital",
|
|
sophtron: "sophtron",
|
|
ibkr: "ibkr"
|
|
}
|
|
end
|