2024-02-02 09:05:04 -06:00
|
|
|
class PagesController < ApplicationController
|
2024-03-06 09:56:59 -05:00
|
|
|
include Filterable
|
2024-02-02 16:06:55 +00:00
|
|
|
|
2024-02-02 09:05:04 -06:00
|
|
|
def dashboard
|
2024-03-11 16:32:13 -04:00
|
|
|
snapshot = Current.family.snapshot(@period)
|
|
|
|
@net_worth_series = snapshot[:net_worth_series]
|
|
|
|
@asset_series = snapshot[:asset_series]
|
|
|
|
@liability_series = snapshot[:liability_series]
|
2024-03-21 13:39:10 -04:00
|
|
|
@account_groups = Current.family.accounts.by_group(period: @period, currency: Current.family.currency)
|
2024-02-02 09:05:04 -06:00
|
|
|
end
|
2024-04-18 07:56:51 -04:00
|
|
|
|
|
|
|
def changelog
|
|
|
|
end
|
|
|
|
|
|
|
|
def feedback
|
|
|
|
end
|
|
|
|
|
|
|
|
def invites
|
|
|
|
end
|
2024-02-02 09:05:04 -06:00
|
|
|
end
|