mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
fix(ActionExpression): update list of valid variable names to reflect actual values
This commit is contained in:
@@ -30,50 +30,55 @@ use Symfony\Component\ExpressionLanguage\SyntaxError;
|
|||||||
class ActionExpression
|
class ActionExpression
|
||||||
{
|
{
|
||||||
private static array $NAMES = array(
|
private static array $NAMES = array(
|
||||||
"id",
|
"transaction_group_id",
|
||||||
|
"user_id",
|
||||||
|
"user_group_id",
|
||||||
"created_at",
|
"created_at",
|
||||||
"updated_at",
|
"updated_at",
|
||||||
"deleted_at",
|
"transaction_group_title",
|
||||||
"user_id",
|
"group_created_at",
|
||||||
|
"group_updated_at",
|
||||||
|
"transaction_journal_id",
|
||||||
"transaction_type_id",
|
"transaction_type_id",
|
||||||
"transaction_group_id",
|
|
||||||
"bill_id",
|
|
||||||
"transaction_currency_id",
|
|
||||||
"description",
|
"description",
|
||||||
"date",
|
"date",
|
||||||
"interest_date",
|
|
||||||
"book_date",
|
|
||||||
"process_date",
|
|
||||||
"order",
|
"order",
|
||||||
"tag_count",
|
|
||||||
"transaction_type_type",
|
"transaction_type_type",
|
||||||
"encrypted",
|
"source_transaction_id",
|
||||||
"completed",
|
"source_account_id",
|
||||||
"attachments",
|
"reconciled",
|
||||||
"attachments_count",
|
"amount",
|
||||||
"bill",
|
"currency_id",
|
||||||
"budgets",
|
"currency_code",
|
||||||
"budgets_count",
|
"currency_name",
|
||||||
"categories",
|
"currency_symbol",
|
||||||
"categories_count",
|
"currency_decimal_places",
|
||||||
"destJournalLinks",
|
"foreign_amount",
|
||||||
"dest_journal_links_count",
|
"foreign_currency_id",
|
||||||
"notes",
|
"foreign_currency_code",
|
||||||
"notes_count",
|
"foreign_currency_name",
|
||||||
"piggyBankEvents",
|
"foreign_currency_symbol",
|
||||||
"piggy_bank_events_count",
|
"foreign_currency_decimal_places",
|
||||||
"sourceJournalLinks",
|
"destination_account_id",
|
||||||
"source_journal_links_count",
|
"source_account_name",
|
||||||
|
"source_account_iban",
|
||||||
|
"source_account_type",
|
||||||
|
"destination_account_name",
|
||||||
|
"destination_account_iban",
|
||||||
|
"destination_account_type",
|
||||||
|
"category_id",
|
||||||
|
"category_name",
|
||||||
|
"budget_id",
|
||||||
|
"budget_name",
|
||||||
"tags",
|
"tags",
|
||||||
"tags_count",
|
"attachments",
|
||||||
"transactionCurrency",
|
"interest_date",
|
||||||
"transactionGroup",
|
"payment_date",
|
||||||
"transactionJournalMeta",
|
"invoice_date",
|
||||||
"transaction_journal_meta_count",
|
"book_date",
|
||||||
"transactionType",
|
"due_date",
|
||||||
"transactions",
|
"process_date",
|
||||||
"transactions_count",
|
"destination_transaction_id"
|
||||||
"user",
|
|
||||||
);
|
);
|
||||||
|
|
||||||
private ExpressionLanguage $expressionLanguage;
|
private ExpressionLanguage $expressionLanguage;
|
||||||
|
Reference in New Issue
Block a user