Rebuild stuff and add warning.

This commit is contained in:
James Cole 2022-01-02 07:22:04 +01:00
parent ffc71da2eb
commit 11176fc212
No known key found for this signature in database
GPG Key ID: BDE6667570EADBD5
7 changed files with 638 additions and 650 deletions

View File

@ -91,6 +91,7 @@ class GracefulNotFoundHandler extends ExceptionHandler
return redirect(route('currencies.index'));
case 'budgets.show':
case 'budgets.edit':
case 'budgets.show.limit':
$request->session()->reflash();
return redirect(route('budgets.index'));

View File

@ -102,6 +102,9 @@ class HomeController extends Controller
*/
public function index(AccountRepositoryInterface $repository): mixed
{
if ('v3' === config('firefly.layout')) {
return view('pwa');
}
$types = config('firefly.accountTypesByIdentifier.asset');
$count = $repository->count($types);
Log::channel('audit')->info('User visits homepage.');

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -23,7 +23,7 @@
*/
/*!
* Chart.js v3.6.2
* Chart.js v3.7.0
* https://www.chartjs.org
* (c) 2021 Chart.js Contributors
* Released under the MIT License
@ -90,7 +90,7 @@
*/
/*!
* vue-i18n v8.26.7
* vue-i18n v8.26.8
* (c) 2021 kazuya kawaguchi
* Released under the MIT License.
*/

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,11 @@
{% endblock %}
{% block content %}
<!-- Small boxes (Stat box) -->
<div class="alert alert-info">
Hi there! The "v2"-layout is no longer receiving updates. Work will continue in "v3". This will be a fully functional
<a href="https://en.wikipedia.org/wiki/Single-page_application" class="alert-link">SPA</a>
based on the excellent <a href="https://quasar.dev/" class="alert-link">Quasar Framework</a> platform.
</div>
<!-- Main row -->
<div id="dashboard"></div>
<!-- /.row (main row) -->