mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 02:54:10 +00:00
6 lines
321 B
Ruby
6 lines
321 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" , testprovider: "testprovider"}
|
|
end
|