Checking API calls
All checks were successful
Music Collection CI Workflow / test (./frontend) (push) Successful in 39s
Music Collection CI Workflow / deploy (push) Successful in 25s
Music Collection CI Workflow / test (./backend) (push) Successful in 38s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Successful in 54s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Successful in 1m51s

This commit is contained in:
Phill Pover 2025-04-07 13:14:14 +01:00
parent 085f76bbcb
commit 54d4fa50f3

View File

@ -1,7 +1,6 @@
import { IsNotEmpty, IsNumber, IsString } from 'class-validator'; import { IsNotEmpty, IsString } from 'class-validator';
export class UpdateAlbumDto { export class UpdateAlbumDto {
@IsNumber()
id: number; id: number;
@IsString() @IsString()
@ -14,6 +13,7 @@ export class UpdateAlbumDto {
@IsString() @IsString()
@IsNotEmpty() @IsNotEmpty()
@IsString() @IsString()
@IsNotEmpty() @IsNotEmpty()
genre: string; genre: string;