feat: implement update functionality for receipt aliases and add corresponding tests
Test Suite / backend-pr-quick (24.15.0) (push) Has been skipped
Test Suite / quick-import-pr-quick (24.15.0) (push) Has been skipped
Test Suite / backend-full (24.15.0) (push) Failing after 22s
Test Suite / flutter-quality (push) Failing after 4s

This commit is contained in:
Nils-Johan Gynther
2026-05-12 21:25:48 +02:00
parent fb6b371fb7
commit 46b9be4791
10 changed files with 403 additions and 21 deletions
+1
View File
@@ -40,6 +40,7 @@ class ReceiptImportApiPaths {
class ReceiptAliasApiPaths {
static const list = '/receipt-aliases';
static String update(int id) => '/receipt-aliases/$id';
static String remove(int id) => '/receipt-aliases/$id';
}