mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 19:14:11 +00:00
6 lines
291 B
Ruby
6 lines
291 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" }
|
|
end
|