Refactor: 상태 type 적용
This commit is contained in:
parent
64c07fbb93
commit
6c50c77d3e
@ -195,7 +195,7 @@ export interface ReviewStatusRequest {
|
||||
export interface ReviewImageResponse {
|
||||
id: number;
|
||||
imageTitle: string;
|
||||
status: 'PENDING' | 'IN_PROGRESS' | 'SAVE' | 'REVIEW_REQUEST' | 'COMPLETED';
|
||||
status: ImageStatus;
|
||||
imagePath: string;
|
||||
dataPath: string;
|
||||
}
|
||||
@ -239,7 +239,7 @@ export interface ImageDetailResponse {
|
||||
imageTitle: string;
|
||||
imageUrl: string;
|
||||
data: string | null;
|
||||
status: 'PENDING' | 'IN_PROGRESS' | 'SAVE' | 'REVIEW_REQUEST' | 'COMPLETED';
|
||||
status: ImageStatus;
|
||||
}
|
||||
|
||||
// 리프레시 토큰 응답 DTO
|
||||
|
Loading…
Reference in New Issue
Block a user