Skip to content

Commit faba21b

Browse files
committed
chore: 직관적이지 않은 함수명 수정
1 parent 7c10258 commit faba21b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Firebase/functions/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ import {
6060
import {
6161
removeTodoNotificationDocuments,
6262
removeCompletedTodoNotificationRecords,
63-
cleanupUnusedTodoNotificationRecords,
63+
cleanupNotificationDispatches,
6464
cleanupSoftDeletedNotifications
6565
} from "./notification/cleanup";
6666

@@ -114,7 +114,7 @@ export {
114114
removeTodoNotificationDocuments,
115115
removeCompletedTodoNotificationRecords,
116116
cleanupSoftDeletedTodos,
117-
cleanupUnusedTodoNotificationRecords,
117+
cleanupNotificationDispatches,
118118
syncTodoNotificationCategory,
119119
requestMoveRemovedCategoryTodosToEtc,
120120
completeMoveRemovedCategoryTodosToEtc,

Firebase/functions/src/notification/cleanup.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ export const cleanupSoftDeletedNotifications = onSchedule({
122122
}
123123
);
124124

125-
// 사용되지 않는 알림 발송 기록의 주기적 정리
126-
export const cleanupUnusedTodoNotificationRecords = onSchedule({
125+
// 더 이상 필요하지 않은 알림 발송 기록 정리
126+
export const cleanupNotificationDispatches = onSchedule({
127127
maxInstances: 1,
128128
region: LOCATION,
129129
schedule: "0 * * * *",

0 commit comments

Comments
 (0)