mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Fix all views.
This commit is contained in:
@@ -100,8 +100,6 @@ return [
|
||||
FireflyIII\Providers\AdminServiceProvider::class,
|
||||
FireflyIII\Providers\RecurringServiceProvider::class,
|
||||
ImportServiceProvider::class,
|
||||
|
||||
|
||||
],
|
||||
'aliases' => [
|
||||
'App' => Illuminate\Support\Facades\App::class,
|
||||
@@ -146,7 +144,10 @@ return [
|
||||
'Amount' => \FireflyIII\Support\Facades\Amount::class,
|
||||
'Steam' => \FireflyIII\Support\Facades\Steam::class,
|
||||
'ExpandedForm' => \FireflyIII\Support\Facades\ExpandedForm::class,
|
||||
'CurrencyForm' => \FireflyIII\Support\Facades\CurrencyForm::class,
|
||||
'AccountForm' => \FireflyIII\Support\Facades\AccountForm::class,
|
||||
'PiggyBankForm' => \FireflyIII\Support\Facades\PiggyBankForm::class,
|
||||
'RuleForm' => \FireflyIII\Support\Facades\RuleForm::class,
|
||||
'Google2FA' => PragmaRX\Google2FALaravel\Facade::class,
|
||||
|
||||
],
|
||||
|
||||
@@ -179,7 +179,7 @@ return [
|
||||
|
|
||||
*/
|
||||
'facades' => [
|
||||
'Breadcrumbs' => [
|
||||
'Breadcrumbs' => [
|
||||
'is_safe' => [
|
||||
'render',
|
||||
],
|
||||
@@ -193,22 +193,37 @@ return [
|
||||
'Steam',
|
||||
'Config',
|
||||
'Request',
|
||||
'Form' => ['is_safe' => ['input', 'select', 'checkbox', 'model', 'open', 'radio', 'textarea', 'file',],],
|
||||
'ExpandedForm' => [
|
||||
'Form' => ['is_safe' => ['input', 'select', 'checkbox', 'model', 'open', 'radio', 'textarea', 'file',],],
|
||||
'ExpandedForm' => [
|
||||
'is_safe' => [
|
||||
'date', 'text', 'select', 'balance', 'optionsList', 'checkbox', 'amount', 'tags', 'integer', 'textarea', 'location', 'file', 'staticText',
|
||||
'password', 'nonSelectableAmount', 'number', 'amountNoCurrency', 'currencyList', 'ruleGroupList',
|
||||
'ruleGroupListWithEmpty', 'piggyBankList', 'currencyListEmpty', 'percentage', 'balanceAll',
|
||||
'password', 'nonSelectableAmount', 'number', 'amountNoCurrency', 'percentage',
|
||||
|
||||
|
||||
],
|
||||
],
|
||||
'AccountForm' => [
|
||||
'AccountForm' => [
|
||||
'is_safe' => [
|
||||
'activeAssetAccountList', 'activeLongAccountList', 'activeWithdrawalDestinations', 'activeDepositDestinations',
|
||||
'assetAccountCheckList', 'assetAccountList', 'longAccountList',
|
||||
],
|
||||
],
|
||||
'CurrencyForm' => [
|
||||
'is_safe' => [
|
||||
'currencyList', 'currencyListEmpty', 'balanceAll',
|
||||
],
|
||||
],
|
||||
'PiggyBankForm' =>
|
||||
[
|
||||
'is_safe' => [
|
||||
'piggyBankList',
|
||||
],
|
||||
],
|
||||
'RuleForm' => [
|
||||
'is_safe' => [
|
||||
'ruleGroupList', 'ruleGroupListWithEmpty',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user