Skip to content

Commit

Permalink
refactor: ♻️ null로 조회되는 정보에 대해 클러스터 또한 null로 반환 (nullable)
Browse files Browse the repository at this point in the history
  • Loading branch information
niamu01 committed Jul 9, 2024
1 parent 01c0a4b commit 18dadbd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/external/where42/where42.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
Logger,
Post,
} from '@nestjs/common';
import Cluster from 'src/enums/cluster.enum';
import { ITagLogRepository } from 'src/tag-log/repository/interface/tag-log-repository.interface';
import { IdLoginDto } from 'src/user/dto/id-login.dto';
import { UserService } from 'src/user/user.service';
Expand Down Expand Up @@ -121,7 +120,7 @@ export class Where42Service {
res.push({
login,
inoutState: null,
cluster: Cluster.GAEPO,
cluster: null,
});
}
}),
Expand Down

0 comments on commit 18dadbd

Please sign in to comment.