mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Handle missing tickers in security price syncs * Show combined cash and holdings value on account page * Improve partial locals
15 lines
239 B
Ruby
15 lines
239 B
Ruby
class Account::CashesController < ApplicationController
|
|
layout :with_sidebar
|
|
|
|
before_action :set_account
|
|
|
|
def index
|
|
end
|
|
|
|
private
|
|
|
|
def set_account
|
|
@account = Current.family.accounts.find(params[:account_id])
|
|
end
|
|
end
|