Skip to content

Commit 1dfe67a

Browse files
committed
fix: 코드 정렬
1 parent 820f423 commit 1dfe67a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+169
-167
lines changed

src/main/java/eatda/controller/cheer/CheerPreviewResponse.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package eatda.controller.cheer;
22

33
import eatda.domain.cheer.Cheer;
4-
import eatda.domain.store.Store;
5-
import java.util.List;
64
import eatda.domain.cheer.CheerTagName;
75
import java.util.List;
86

src/main/java/eatda/controller/cheer/CheerRegisterRequest.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ public record CheerRegisterRequest(
1111
List<UploadedImageDetail> images,
1212
List<CheerTagName> tags
1313
) {
14-
public record UploadedImageDetail(
15-
String imageKey,
16-
long orderIndex,
17-
String contentType,
18-
long fileSize
19-
) {
20-
}
21-
2214
@Override
2315
public List<CheerTagName> tags() { // TODO : 클라이언트 태그 구현 완료 시 삭제
2416
if (tags == null) {
2517
return Collections.emptyList();
2618
}
2719
return tags;
2820
}
21+
22+
public record UploadedImageDetail(
23+
String imageKey,
24+
long orderIndex,
25+
String contentType,
26+
long fileSize
27+
) {
28+
}
2929
}

src/main/resources/db/migration/V3__add_story_table.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CREATE TABLE `story`
77
`store_road_address` VARCHAR(255) NOT NULL,
88
`store_lot_number_address` VARCHAR(255) NOT NULL,
99
`store_category` VARCHAR(50) NOT NULL,
10-
`description` TEXT NULL,
10+
`description` TEXT NULL,
1111
`image_key` VARCHAR(511) NOT NULL,
1212
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
1313
PRIMARY KEY (`id`)

terraform-bootstrap/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ variable "ecr_repositories" {
22
type = map(object({
33
scan_on_push = bool
44
image_tag_mutability = string
5-
tags = map(string)
5+
tags = map(string)
66
}))
77
}

terraform/common/alb/http-listener/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ resource "aws_alb_listener" "http" {
1212
status_code = var.http_listener.redirect.status_code
1313
}
1414
}
15-
}
15+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

terraform/common/alb/https-listener/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ resource "aws_alb_listener_rule" "common" {
2929
tags = {
3030
Name = each.key
3131
}
32-
}
32+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

terraform/common/alb/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ module "https" {
2121
alb_arn = aws_alb.common.arn
2222
https_listener = local.https_listener
2323
listener_rules = local.listener_rules
24-
depends_on = [var.certificate_validation_complete]
24+
depends_on = [var.certificate_validation_complete]
2525
}
2626

2727
module "target_groups" {
2828
source = "./target-group"
2929
target_groups = local.target_groups
3030
vpc_id = var.vpc_id
31-
}
31+
}

terraform/common/alb/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ output "alb_dns_name" {
1616

1717
output "alb_zone_id" {
1818
value = aws_alb.common.zone_id
19-
}
19+
}

0 commit comments

Comments
 (0)