Skip to content

Commit

Permalink
Post-merge cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
florimondmanca committed Dec 19, 2023
1 parent c7a2382 commit 32d5897
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 91 deletions.
42 changes: 0 additions & 42 deletions server/src/Infrastructure/Customer/Action/CreateCustomerAction.ts

This file was deleted.

45 changes: 0 additions & 45 deletions server/src/Infrastructure/Customer/Action/UpdateCustomerAction.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ICommandBus } from 'src/Application/ICommandBus';
import { IsAuthenticatedGuard } from 'src/Infrastructure/HumanResource/User/Security/IsAuthenticatedGuard';
import { WithName } from 'src/Infrastructure/Common/ExtendedRouting/WithName';
import { CreateCustomerCommand } from 'src/Application/Customer/Command/CreateCustomerCommand';
import { CustomerDTO } from 'server/src/Infrastructure/Customer/DTO/CustomerDTO';
import { CustomerDTO } from 'src/Infrastructure/Customer/DTO/CustomerDTO';
import { RouteNameResolver } from 'src/Infrastructure/Common/ExtendedRouting/RouteNameResolver';

@Controller('app/customers/add')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { IQueryBus } from 'src/Application/IQueryBus';
import { Response } from 'express';
import { IdDTO } from 'src/Infrastructure/Common/DTO/IdDTO';
import { GetCustomerByIdQuery } from 'src/Application/Customer/Query/GetCustomerByIdQuery';
import { CustomerDTO } from 'server/src/Infrastructure/Customer/DTO/CustomerDTO';
import { CustomerDTO } from 'src/Infrastructure/Customer/DTO/CustomerDTO';
import { UpdateCustomerCommand } from 'src/Application/Customer/Command/UpdateCustomerCommand';
import { RouteNameResolver } from 'src/Infrastructure/Common/ExtendedRouting/RouteNameResolver';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty } from 'class-validator';

export class CustomerDTO {
@ApiProperty()
@IsNotEmpty()
public name: string;
}

0 comments on commit 32d5897

Please sign in to comment.