Skip to content

Commit

Permalink
Line sms 메시징 api 구현 (#140)
Browse files Browse the repository at this point in the history
* refactor : 리드미 파일

* refactor : 리드미 파일

* refactor : db 설정 바꾸기

* feat : 1. 보호자, 요양보호사 둘다 기본적으로 생성되었을 때 sms, line 메시지 수신 설정이 false로 되어있다.

* feat : 2. 마이페이지에서 수신 동의할 수 있다.

* feat : 3. 스케쥴러가 1분마다 돌면서 수신 동의된 보호자, 요양보호사 대상으로 알림 보내주기

* refactor : 간단한 수정

* refactor : ec2 환경 시간을 Asia/seoul로 바꾸기

* refactor : 엔드포인트 변경
  • Loading branch information
pykido authored Nov 14, 2024
1 parent 185665f commit 4609842
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/main/java/dbdr/DbdrApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,21 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.scheduling.annotation.EnableScheduling;

import java.util.TimeZone;

@SpringBootApplication
@EnableJpaAuditing
@EnableScheduling
public class DbdrApplication {

public static void main(String[] args) {
SpringApplication.run(DbdrApplication.class, args);
}
static {
// 애플리케이션이 시작되기 전에 서울 시간으로 타임존을 설정
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul"));
}

public static void main(String[] args) {
SpringApplication.run(DbdrApplication.class, args);
}
}

0 comments on commit 4609842

Please sign in to comment.