-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feat : Diary관련 ErrorType 추가 * Feat : RedisConfig 추가 비동기 설정과 String 으로 직렬화,역직렬화 하도록 수정 * Feat : 메세지 및 DTO 추가 * Feat : 문법 및 불필요 파일 제거 * Feat : Diary Entity 수정 * Feat : Diary Publisher 구현 * Feat : Diary Listener 구현 * Chore : 경로 이동 * Feat : Diary Creation Service 구현 * Feat : createdAt Instant -> LocalDateTime * Feat : Diary Controller 구현 * Feat : Diary Publisher 구현 * Faet : Diary Implementation 계층 구현 * Feat : Diary Policy 및 필터 구현 * Feat : Diary 서비스 계층 구현 * Feat : Jpa Repository 구현 * Feat : 욕설 필터링 종속성 추가 * Fix : Conflict 해결 * Feat : Entity Column 이름 수정 * Feat : Conflict 반영
- Loading branch information
Showing
10 changed files
with
30 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
src/main/java/com/donkeys_today/server/domain/alarm/AlarmRepository.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/java/com/donkeys_today/server/infrastructure/alarm/AlarmJpaRepository.java
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
src/main/java/com/donkeys_today/server/infrastructure/alarm/AlarmRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.donkeys_today.server.infrastructure.alarm; | ||
|
||
import com.donkeys_today.server.domain.alarm.Alarm; | ||
import com.donkeys_today.server.domain.user.User; | ||
import java.time.LocalTime; | ||
import java.util.List; | ||
import java.util.Optional; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface AlarmRepository extends JpaRepository<Alarm, Long> { | ||
|
||
Optional<Alarm> findByUser(User user); | ||
|
||
List<Alarm> findAllByTime(LocalTime time); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
src/main/java/com/donkeys_today/server/presentation/Diary/DiaryControllerImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters