File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ export class CriteriaController {
4747 @Param ( "id" ) criteriaId : number ,
4848 @Body ( ) { data : criteriaDTO } : { data : CriteriaDTO } ,
4949 ) : Promise < CriteriaDTO > {
50- // TODO There is a TeamUpdateDTO. CriteriaUpdateDTO?
5150 const criteria = convertBetweenEntityAndDTO ( criteriaDTO , Criteria ) ;
5251 const updateCriteria = await this . _ratings . updateCriteria ( criteria ) ;
5352 return convertBetweenEntityAndDTO ( updateCriteria , CriteriaDTO ) ;
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ export class ProjectController {
2424 @Body ( ) { data : projectDTO } : { data : ProjectDTO } ,
2525 @CurrentUser ( ) user : User ,
2626 ) : Promise < ProjectDTO > {
27- // TODO ProjectUpdateDTO?
2827 const existing = await this . _projects . getProjectByID ( projectId ) ;
2928
3029 if ( existing == null ) {
Original file line number Diff line number Diff line change @@ -10,5 +10,3 @@ export class Criteria {
1010 @Longtext ( )
1111 public description ! : string ;
1212}
13-
14- // TODO Rating Project and Criteria DTO
You can’t perform that action at this time.
0 commit comments