mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 18:40:12 +00:00
Forgot some routes & filters.
This commit is contained in:
@@ -1,20 +1,3 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return ['driver' => 'array',];
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Default Cache Driver
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This option controls the default cache "driver" that will be used when
|
|
||||||
| using the Caching library. Of course, you may use other drivers any
|
|
||||||
| time you wish. This is the default when another is not specified.
|
|
||||||
|
|
|
||||||
| Supported: "file", "database", "apc", "memcached", "redis", "array"
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'driver' => 'array',
|
|
||||||
|
|
||||||
];
|
|
||||||
|
@@ -1,21 +1,3 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return ['driver' => 'array',];
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Default Session Driver
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This option controls the default session "driver" that will be used on
|
|
||||||
| requests. By default, we will use the lightweight native driver but
|
|
||||||
| you may specify any of the other wonderful drivers provided here.
|
|
||||||
|
|
|
||||||
| Supported: "native", "cookie", "database", "apc",
|
|
||||||
| "memcached", "redis", "array"
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'driver' => 'array',
|
|
||||||
|
|
||||||
];
|
|
||||||
|
@@ -9,6 +9,7 @@ App::before(
|
|||||||
if (Auth::check()) {
|
if (Auth::check()) {
|
||||||
Filter::setSessionDateRange();
|
Filter::setSessionDateRange();
|
||||||
Reminders::updateReminders();
|
Reminders::updateReminders();
|
||||||
|
Steam::removeEmptyBudgetLimits();
|
||||||
$reminders = Reminders::getReminders();
|
$reminders = Reminders::getReminders();
|
||||||
}
|
}
|
||||||
View::share('reminders', $reminders);
|
View::share('reminders', $reminders);
|
||||||
|
@@ -232,7 +232,6 @@ Route::group(
|
|||||||
// report controller:
|
// report controller:
|
||||||
Route::get('/reports', ['uses' => 'ReportController@index', 'as' => 'reports.index']);
|
Route::get('/reports', ['uses' => 'ReportController@index', 'as' => 'reports.index']);
|
||||||
Route::get('/reports/{year}', ['uses' => 'ReportController@year', 'as' => 'reports.year']);
|
Route::get('/reports/{year}', ['uses' => 'ReportController@year', 'as' => 'reports.year']);
|
||||||
Route::get('/reports/budgets/{year}/{month}', ['uses' => 'ReportController@budgets', 'as' => 'reports.budgets']);
|
|
||||||
Route::get('/reports/unbalanced/{year}/{month}', ['uses' => 'ReportController@unbalanced', 'as' => 'reports.unbalanced']);
|
Route::get('/reports/unbalanced/{year}/{month}', ['uses' => 'ReportController@unbalanced', 'as' => 'reports.unbalanced']);
|
||||||
|
|
||||||
// reminder controller
|
// reminder controller
|
||||||
|
Reference in New Issue
Block a user