Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 authored Mar 22, 2024
2 parents 9bcf55c + efd7dfb commit e0dbb80
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'org.sopt.makers.crew'
version = '1.0.2'
version = '1.1.0'

java {
sourceCompatibility = '17'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ CorsConfigurationSource corsConfigurationSource() {
return source;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public OpenAPI openAPI() {

Info info = new Info()
.title("Crew API 문서")
.version("1.0.2")
.version("1.1.0")
.description("Crew API 문서");

String jwtSchemeName = "JWT Authorization";
Expand All @@ -39,4 +39,4 @@ public OpenAPI openAPI() {
.addSecurityItem(securityRequirement)
.components(components);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ List<Apply> findAllByUserIdAndStatus(@Param("userId") Integer userId,

List<Apply> findAllByMeetingIdAndStatus(Integer meetingId, EnApplyStatus statusValue);

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -235,4 +235,4 @@ public Integer getMeetingStatus() {
return EnMeetingStatus.RECRUITMENT_COMPLETE.getValue();
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ default Meeting findByIdOrThrow(Integer meetingId) {
return findById(meetingId)
.orElseThrow(() -> new BadRequestException(NOT_FOUND_MEETING.getErrorCode()));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ public static MeetingCategory ofValue(String dbData) {
public String getValue() {
return value;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public class ImageUrlVO {

private Integer id;
private String url;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,4 @@ public void addComment(Comment comment) {
public void addReport(Report report) {
this.reports.add(report);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ default User findByOrgIdOrThrow(Integer orgUserId) {
() -> new NoContentException(
NO_CONTENT_EXCEPTION.getErrorCode())); //유저가 아직 모임 서비스를 이용 전이기 때문에
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ public class UserActivityVO {
private String part;
private int generation;

}
}
2 changes: 1 addition & 1 deletion server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sopt_web_product_server",
"version": "1.0.2",
"version": "1.1.0",
"description": "",
"author": "",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion server/src/common/utils/swagger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function setupSwagger(app: INestApplication): void {
const options = new DocumentBuilder()
.setTitle('Crew API 문서')
.setDescription('Crew API 문서')
.setVersion('1.0.2')
.setVersion('1.1.0')
.addBearerAuth()
.build();

Expand Down

0 comments on commit e0dbb80

Please sign in to comment.