-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from TeamHARA/feat/push-alarm
[FEAT] 최종결정 완료시 푸시 알림
- Loading branch information
Showing
9 changed files
with
130 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export default{ | ||
FINISHED_ALARM_TITLE: "캐라 보석 획득", | ||
DEADLINE_ALARM_TITLE: "고민 보석 캐기", | ||
NO_DEADLINE_ALARM_TITLE: "고민 원석 캐기", | ||
|
||
FINISHED_ALARM_1: "자유의 보석을 캐냈어요!", | ||
FINISHED_ALARM_2: "가능성의 보석을 캐냈어요!", | ||
FINISHED_ALARM_3: "호기심의 보석을 캐냈어요!", | ||
FINISHED_ALARM_4: "집중의 보석을 캐냈어요!", | ||
FINISHED_ALARM_5: "긍정의 보석을 캐냈어요!", | ||
FINISHED_ALARM_6: "가치의 보석을 캐냈어요!", | ||
|
||
BEFORE_DEADLINE_ALARM: "고민의 여정이 3일 남았어요. 잠시 이 고민에 집중해보세요.", | ||
ON_DEADLINE_ALARM: "오늘은 고민을 마치기로 한 날이에요. 과정을 기록하고, 불안을 덜어내세요.", | ||
|
||
NO_DEADLINE_ALARM: "잠시 이 고민에 집중해보세요. 고민 원석을 보석으로 바꿀 수 있어요." | ||
|
||
} |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export { default as rm } from "./responseMessage"; | ||
export { default as sc } from "./statusCode"; | ||
export { default as tokenType } from "./tokenType"; | ||
export { default as alarm } from "./alarmMessage"; | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
const admin = require('firebase-admin'); | ||
let serviceAccount = require("../../firebase-admin.json"); | ||
admin.initializeApp({ | ||
credential: admin.credential.cert(serviceAccount), | ||
}) | ||
|
||
export default admin; |
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
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