mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
17 lines
237 B
Ruby
17 lines
237 B
Ruby
class Account::Valuation < ApplicationRecord
|
|
include Account::Entryable
|
|
|
|
class << self
|
|
def search(_params)
|
|
all
|
|
end
|
|
|
|
def requires_search?(_params)
|
|
false
|
|
end
|
|
end
|
|
|
|
def name
|
|
"Balance update"
|
|
end
|
|
end
|