1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/app/controllers/pages_controller.rb

12 lines
381 B
Ruby
Raw Normal View History

2024-02-02 09:05:04 -06:00
class PagesController < ApplicationController
include Filterable
2024-02-02 09:05:04 -06:00
before_action :authenticate_user!
2024-02-02 09:05:04 -06:00
def dashboard
@asset_series = Current.family.asset_series(@period)
@liability_series = Current.family.liability_series(@period)
@net_worth_series = Current.family.net_worth_series(@period)
@account_groups = Current.family.accounts.by_group(@period)
2024-02-02 09:05:04 -06:00
end
end