diff --git a/.github/label-actions.yml b/.github/label-actions.yml index 6c9982d2cc..84770fb304 100644 --- a/.github/label-actions.yml +++ b/.github/label-actions.yml @@ -4,6 +4,7 @@ feature: issues: # Post a comment, `{issue-author}` is an optional placeholder + unlabel: feature comment: | Hi there! @@ -32,6 +33,7 @@ epic: Thank you for your contributions. enhancement: + unlabel: enhancement issues: # Post a comment, `{issue-author}` is an optional placeholder comment: | diff --git a/app/Models/AccountType.php b/app/Models/AccountType.php index 79e8493bc8..013b7269bd 100644 --- a/app/Models/AccountType.php +++ b/app/Models/AccountType.php @@ -37,30 +37,43 @@ class AccountType extends Model /** @deprecated */ public const string ASSET = 'Asset account'; + /** @deprecated */ public const string BENEFICIARY = 'Beneficiary account'; + /** @deprecated */ public const string CASH = 'Cash account'; + /** @deprecated */ public const string CREDITCARD = 'Credit card'; + /** @deprecated */ public const string DEBT = 'Debt'; + /** @deprecated */ public const string DEFAULT = 'Default account'; + /** @deprecated */ public const string EXPENSE = 'Expense account'; + /** @deprecated */ public const string IMPORT = 'Import account'; + /** @deprecated */ public const string INITIAL_BALANCE = 'Initial balance account'; + /** @deprecated */ public const string LIABILITY_CREDIT = 'Liability credit account'; + /** @deprecated */ public const string LOAN = 'Loan'; + /** @deprecated */ public const string MORTGAGE = 'Mortgage'; + /** @deprecated */ public const string RECONCILIATION = 'Reconciliation account'; + /** @deprecated */ public const string REVENUE = 'Revenue account'; @@ -80,7 +93,7 @@ class AccountType extends Model protected function casts(): array { return [ - //'type' => AccountTypeEnum::class, + // 'type' => AccountTypeEnum::class, ]; } } diff --git a/app/Models/AutoBudget.php b/app/Models/AutoBudget.php index 571c444fe6..b92f5f5b17 100644 --- a/app/Models/AutoBudget.php +++ b/app/Models/AutoBudget.php @@ -57,7 +57,7 @@ class AutoBudget extends Model protected function casts(): array { return [ - //'auto_budget_type' => AutoBudgetType::class, + // 'auto_budget_type' => AutoBudgetType::class, ]; } diff --git a/app/Models/RecurrenceRepetition.php b/app/Models/RecurrenceRepetition.php index 1333b3b5b3..525bb7edfa 100644 --- a/app/Models/RecurrenceRepetition.php +++ b/app/Models/RecurrenceRepetition.php @@ -62,7 +62,7 @@ class RecurrenceRepetition extends Model protected function casts(): array { return [ - //'weekend' => RecurrenceRepetitionWeekend::class, + // 'weekend' => RecurrenceRepetitionWeekend::class, ]; } diff --git a/app/Models/TransactionType.php b/app/Models/TransactionType.php index abf51f9486..03d0fda5a2 100644 --- a/app/Models/TransactionType.php +++ b/app/Models/TransactionType.php @@ -57,7 +57,7 @@ class TransactionType extends Model protected function casts(): array { return [ - //'type' => TransactionTypeEnum::class, + // 'type' => TransactionTypeEnum::class, ]; } diff --git a/app/Models/Webhook.php b/app/Models/Webhook.php index 6a26f29471..19c392270e 100644 --- a/app/Models/Webhook.php +++ b/app/Models/Webhook.php @@ -56,9 +56,9 @@ class Webhook extends Model protected function casts(): array { return [ -// 'delivery' => WebhookDelivery::class, -// 'response' => WebhookResponse::class, -// 'trigger' => WebhookTrigger::class, + // 'delivery' => WebhookDelivery::class, + // 'response' => WebhookResponse::class, + // 'trigger' => WebhookTrigger::class, ]; }