mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 12:34:12 +00:00
14 lines
198 B
Ruby
14 lines
198 B
Ruby
class Account::Valuation < ApplicationRecord
|
|
include Account::Entryable
|
|
|
|
class << self
|
|
def search(_params)
|
|
all
|
|
end
|
|
|
|
def requires_search?(_params)
|
|
false
|
|
end
|
|
end
|
|
end
|