Skip to content

Commit

Permalink
[deploy] v1.0.3 배포 (#176)
Browse files Browse the repository at this point in the history
* [fix #142] 앨범 내 사진 조회 최신순으로 정렬 (#143)

* [fix #140] 앨범 공유 수락 API 로직 수정 (#144)

* [feat #128] 포토부스 관련 API 구현 (#146)

* [feat #128] 포토부스 관련 API 구현

* [fix #128] Photo 공유 수락 API 로직 수정

* [chore #128] swagger 업데이트

* [chore #128] 공백 제거

* [fix #147] 포포리즘 공유 API 수정 (#148)

* [feat #128] 포토부스 관련 API 구현

* [fix #128] Photo 공유 수락 API 로직 수정

* [chore #128] swagger 업데이트

* [chore #128] 공백 제거

* [fix #147] 포포리즘 공유 API 수정

* [chore #147] swagger 수정

* [hotfix #149] 포포리즘 공유 API request body 수정 (#150)

* [hotfix #149] 포포리즘 공유 request body 수정

* [chore #149] 사용하지 않는 import 제거

* [setting #149] banner 추가

* [chore #149] CI 스크립트 수정

* [chore #149] CI prod 스크립트 수정

* [chore #149] cd 스크립트 수정

* [fix #151] 배포 전 버그 수정 (access token 만료 시간 변경, 포포리즘 공유 API 수정) (#152)

* [fix #151] Access Token 만료시간 변경

* [fix #151] 사진 upload url 변경

* [fix #151] 포포리즘 공유시에 이미지 저장 url 변경 (#153)

* [fix #151] Access Token 만료시간 변경

* [fix #151] 사진 upload url 변경

* [hotfix #151] 포포리즘 저장 url 변경

* [refactor #156] slack 회원가입시에 알람 추가 (#157)

* [refactor #156] slack 회원가입시에 알람 추가

* [fix #156] IOException 처리

* [fix #158] slack 메세지 알림 수정 (#159)

* [fix #158] 어노테이션 변경 (#160)

* [fix #158] slack 메세지 알림 수정

* [fix #158] annotation 변경

* [test #163] add domain test code (#167)

* [feat #169] 토큰 재발급, 회원 탈퇴 API V2 구현 (#170)

* [feat #169] 토큰 재발급, 회원 탈퇴 API V2 구현

* [feat #169] 애플리케이션 실행 스크립트 추가

* [refactor #165] slack 알림 기능 고도화 (#171)

* [fix #174] slack activeProfile 분기처리 로직 추가 (#175)

---------

Co-authored-by: Yunseo Kang <[email protected]>
  • Loading branch information
unanchoi and yungu0010 authored Oct 5, 2023
1 parent 5cc64da commit 8c36b33
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ public void sendMessage(String channel, String text) {
}
}
private String getProfiles() {
return Arrays.stream(env.getActiveProfiles())
.findFirst()
.orElse("");
String activeProfile = Arrays.stream(env.getActiveProfiles()).findFirst().orElse("");
return activeProfile.equals("blue") || activeProfile.equals("green") ? "prod" : activeProfile;
}
}
}

0 comments on commit 8c36b33

Please sign in to comment.