mirror of
https://github.com/we-promise/sure
synced 2026-04-25 17:15:07 +02:00
18 lines
237 B
Ruby
18 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
|