1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 22:29:38 +02:00
Maybe/app/controllers/pages_controller.rb
Zach Gollwitzer 6f0e410684
Dashboard View and Calculations (#521)
* Handle Turbo updates with tabs

Fixes #491

* Add Filterable concern for controllers

* Add trendline chart

* Extract common UI to partials

* Series refactor

* Put placeholders for calculations in

* Add classification generated column to account

* Add basic net worth calculation

* Add net worth tests

* Get net worth graph working

* Fix lint errors

* Implement asset grouping query

* Make trends and series more intuitive

* Fully functional dashboard

* Remove logging
2024-03-06 09:56:59 -05:00

11 lines
381 B
Ruby

class PagesController < ApplicationController
include Filterable
before_action :authenticate_user!
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)
end
end