Skip to content

Commit

Permalink
move name from full to light dto site
Browse files Browse the repository at this point in the history
  • Loading branch information
pachonjcl committed Mar 1, 2025
1 parent 32d2a9d commit 89b51ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/entity-service/src/entities/dto/site.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ export class SiteLightDto extends EntityDto {
@ApiProperty({ nullable: true })
name: string | null;

@ApiProperty({
nullable: true,
description: "The associated project name"
})
projectName: string | null;

@ApiProperty()
createdAt: Date;

Expand Down Expand Up @@ -214,10 +220,4 @@ export class SiteFullDto extends SiteLightDto {
description: "The associated project uuid"
})
projectUuid: string;

@ApiProperty({
nullable: true,
description: "The associated project name"
})
projectName: string | null;
}

0 comments on commit 89b51ee

Please sign in to comment.