mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
* Add trends, time series, seed data * Remove test data * Replace old view values with helpers * Fix tooltip bugs in D3 chart * Fix tests * Fix smoke test * Add CRUD actions for valuations * Scaffold out inline editing with Turbo
5 lines
176 B
Ruby
5 lines
176 B
Ruby
# STI model to represent a point-in-time "valuation" of an account's value
|
|
# Types include: Appraisal, Adjustment
|
|
class Valuation < ApplicationRecord
|
|
belongs_to :account
|
|
end
|