feat: implement user-scoped receipt aliases with global fallback; enhance alias management in admin panel
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
Nils-Johan Gynther
2026-05-04 19:43:13 +02:00
parent d73ea5ef7c
commit 64b06435cf
15 changed files with 751 additions and 36 deletions
@@ -1,4 +1,4 @@
import { IsInt, IsString, MinLength } from 'class-validator';
import { IsBoolean, IsInt, IsOptional, IsString, MinLength } from 'class-validator';
export class CreateReceiptAliasDto {
@IsString()
@@ -7,4 +7,8 @@ export class CreateReceiptAliasDto {
@IsInt()
productId!: number;
@IsOptional()
@IsBoolean()
isGlobal?: boolean;
}