mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-15 19:09:50 +00:00
Time to enable the expression engine.
This commit is contained in:
@@ -225,7 +225,7 @@ return [
|
||||
'show_copy' => false, // Show copy button next to the query,
|
||||
'slow_threshold' => false, // Only track queries that last longer than this time in ms
|
||||
'memory_usage' => false, // Show queries memory usage
|
||||
'soft_limit' => 100, // After the soft limit, no parameters/backtrace are captured
|
||||
'soft_limit' => 250, // After the soft limit, no parameters/backtrace are captured
|
||||
'hard_limit' => 500, // After the hard limit, queries are ignored
|
||||
],
|
||||
'mail' => [
|
||||
|
||||
@@ -114,7 +114,7 @@ return [
|
||||
'telemetry' => false,
|
||||
'webhooks' => true,
|
||||
'handle_debts' => true,
|
||||
'expression_engine' => false,
|
||||
'expression_engine' => true,
|
||||
// see cer.php for exchange rates feature flag.
|
||||
],
|
||||
'version' => 'develop/2024-07-22',
|
||||
@@ -503,13 +503,13 @@ return [
|
||||
'remove_tag' => RemoveTag::class,
|
||||
'remove_all_tags' => RemoveAllTags::class,
|
||||
'set_description' => SetDescription::class,
|
||||
'append_description' => AppendDescription::class,
|
||||
'prepend_description' => PrependDescription::class,
|
||||
//'append_description' => AppendDescription::class,
|
||||
//'prepend_description' => PrependDescription::class,
|
||||
'set_source_account' => SetSourceAccount::class,
|
||||
'set_destination_account' => SetDestinationAccount::class,
|
||||
'set_notes' => SetNotes::class,
|
||||
'append_notes' => AppendNotes::class,
|
||||
'prepend_notes' => PrependNotes::class,
|
||||
// 'append_notes' => AppendNotes::class,
|
||||
// 'prepend_notes' => PrependNotes::class,
|
||||
'clear_notes' => ClearNotes::class,
|
||||
'link_to_bill' => LinkToBill::class,
|
||||
'convert_withdrawal' => ConvertToWithdrawal::class,
|
||||
@@ -518,10 +518,10 @@ return [
|
||||
'switch_accounts' => SwitchAccounts::class,
|
||||
'update_piggy' => UpdatePiggybank::class,
|
||||
'delete_transaction' => DeleteTransaction::class,
|
||||
'append_descr_to_notes' => AppendDescriptionToNotes::class,
|
||||
'append_notes_to_descr' => AppendNotesToDescription::class,
|
||||
'move_descr_to_notes' => MoveDescriptionToNotes::class,
|
||||
'move_notes_to_descr' => MoveNotesToDescription::class,
|
||||
// 'append_descr_to_notes' => AppendDescriptionToNotes::class,
|
||||
// 'append_notes_to_descr' => AppendNotesToDescription::class,
|
||||
// 'move_descr_to_notes' => MoveDescriptionToNotes::class,
|
||||
// 'move_notes_to_descr' => MoveNotesToDescription::class,
|
||||
'set_source_to_cash' => SetSourceToCashAccount::class,
|
||||
'set_destination_to_cash' => SetDestinationToCashAccount::class,
|
||||
'set_amount' => SetAmount::class,
|
||||
|
||||
Reference in New Issue
Block a user