mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 21:29:38 +02:00
11 lines
397 B
Ruby
11 lines
397 B
Ruby
class PagesController < ApplicationController
|
|
include Filterable
|
|
|
|
def dashboard
|
|
snapshot = Current.family.snapshot(@period)
|
|
@net_worth_series = snapshot[:net_worth_series]
|
|
@asset_series = snapshot[:asset_series]
|
|
@liability_series = snapshot[:liability_series]
|
|
@account_groups = Current.family.accounts.by_group(period: @period, currency: Current.family.currency)
|
|
end
|
|
end
|