mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 18:30:55 -06:00
Rebuild stuff and add warning.
This commit is contained in:
parent
ffc71da2eb
commit
11176fc212
@ -91,6 +91,7 @@ class GracefulNotFoundHandler extends ExceptionHandler
|
|||||||
return redirect(route('currencies.index'));
|
return redirect(route('currencies.index'));
|
||||||
case 'budgets.show':
|
case 'budgets.show':
|
||||||
case 'budgets.edit':
|
case 'budgets.edit':
|
||||||
|
case 'budgets.show.limit':
|
||||||
$request->session()->reflash();
|
$request->session()->reflash();
|
||||||
|
|
||||||
return redirect(route('budgets.index'));
|
return redirect(route('budgets.index'));
|
||||||
|
@ -102,6 +102,9 @@ class HomeController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function index(AccountRepositoryInterface $repository): mixed
|
public function index(AccountRepositoryInterface $repository): mixed
|
||||||
{
|
{
|
||||||
|
if ('v3' === config('firefly.layout')) {
|
||||||
|
return view('pwa');
|
||||||
|
}
|
||||||
$types = config('firefly.accountTypesByIdentifier.asset');
|
$types = config('firefly.accountTypesByIdentifier.asset');
|
||||||
$count = $repository->count($types);
|
$count = $repository->count($types);
|
||||||
Log::channel('audit')->info('User visits homepage.');
|
Log::channel('audit')->info('User visits homepage.');
|
||||||
|
1270
frontend/yarn.lock
1270
frontend/yarn.lock
File diff suppressed because it is too large
Load Diff
2
public/v2/js/vendor.js
vendored
2
public/v2/js/vendor.js
vendored
File diff suppressed because one or more lines are too long
@ -23,7 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Chart.js v3.6.2
|
* Chart.js v3.7.0
|
||||||
* https://www.chartjs.org
|
* https://www.chartjs.org
|
||||||
* (c) 2021 Chart.js Contributors
|
* (c) 2021 Chart.js Contributors
|
||||||
* Released under the MIT License
|
* Released under the MIT License
|
||||||
@ -90,7 +90,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* vue-i18n v8.26.7
|
* vue-i18n v8.26.8
|
||||||
* (c) 2021 kazuya kawaguchi
|
* (c) 2021 kazuya kawaguchi
|
||||||
* Released under the MIT License.
|
* Released under the MIT License.
|
||||||
*/
|
*/
|
||||||
|
File diff suppressed because one or more lines are too long
@ -4,7 +4,11 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<!-- Small boxes (Stat box) -->
|
<!-- 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 -->
|
<!-- Main row -->
|
||||||
<div id="dashboard"></div>
|
<div id="dashboard"></div>
|
||||||
<!-- /.row (main row) -->
|
<!-- /.row (main row) -->
|
||||||
|
Loading…
Reference in New Issue
Block a user