Skip to content

Commit

Permalink
Merge pull request #41 from depromeet/feature/#40
Browse files Browse the repository at this point in the history
Feature/#40 분기별 공고 조회 api 문서 queryparam 누락
  • Loading branch information
sejoon00 authored Aug 12, 2024
2 parents fbaa787 + 1842992 commit f4dd1bd
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 1,596 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,4 @@ jobs:
- name: build
run: |
chmod +x gradlew
./gradlew build -x test
./gradlew openapi3
./gradlew build -x test -x openapi3
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build/
!**/src/test/**/build/
/src/main/generated/

/src/main/resources/static/
/src/main/resources/static/docs/*

### STS ###
.apt_generated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import jakarta.persistence.EntityListeners;
import jakarta.persistence.MappedSuperclass;
import java.time.LocalDateTime;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
Expand All @@ -27,6 +28,7 @@ public abstract class BaseEntity {
private LocalDateTime updatedDate;

@Column(name = "deleted")
@Builder.Default
private boolean deleted = false;

}
2 changes: 1 addition & 1 deletion src/main/resources/application-security.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
jwt:
access-token-secret: ${JWT_ACCESS_TOKEN_SECRET:}
refresh-token-secret: ${JWT_REFRESH_TOKEN_SECRET:}
access-token-expiration-time: ${JWT_ACCESS_TOKEN_EXPIRATION_TIME:7200} #2시간
access-token-expiration-time: ${JWT_ACCESS_TOKEN_EXPIRATION_TIME:36000000} #10000시간
refresh-token-expiration-time: ${JWT_REFRESH_TOKEN_EXPIRATION_TIME:604800} #7일
issuer: ${JWT_ISSUER:}
Loading

0 comments on commit f4dd1bd

Please sign in to comment.