mirror of
https://github.com/we-promise/sure.git
synced 2026-06-04 10:19:03 +00:00
* First pass of Akahu * fix up sync all * conflicts * fix db migration issue? - fix auto selection of akahu account type * Address Akahu PR feedback * Complete provider metadata * Fix PR 1921 CI tests * PR feedback * PR feedback * post merge --------- Co-authored-by: failing <failing@users.noreply.github.com> Co-authored-by: Juan José Mata <jjmata@jjmata.com> Co-authored-by: sure-admin <sure-admin@splashblot.com>
21 lines
449 B
Ruby
21 lines
449 B
Ruby
class DataEnrichment < ApplicationRecord
|
|
belongs_to :enrichable, polymorphic: true
|
|
|
|
enum :source, {
|
|
rule: "rule",
|
|
plaid: "plaid",
|
|
simplefin: "simplefin",
|
|
lunchflow: "lunchflow",
|
|
akahu: "akahu",
|
|
synth: "synth",
|
|
ai: "ai",
|
|
enable_banking: "enable_banking",
|
|
coinstats: "coinstats",
|
|
mercury: "mercury",
|
|
brex: "brex",
|
|
indexa_capital: "indexa_capital",
|
|
sophtron: "sophtron",
|
|
ibkr: "ibkr"
|
|
}
|
|
end
|