Skip to content

Commit 0256c24

Browse files
committed
hotfix: api, integration 하기 위해 대응개발 v2
1 parent 97cd513 commit 0256c24

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/types/dto/requests/eventRequest.type.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
import { IsEnum, IsNotEmpty } from 'class-validator';
22

33
export enum UserEventType {
4-
LOGIN = '01',
5-
POST_CLICK = '02',
6-
POST_GRAPH_CLICK = '03',
7-
EXIT = '04',
4+
LOGIN = '11', // 로그인 성공
5+
NAVIGATE = '12', // 페이지 이동 (헤더 클릭 등)
6+
LOGOUT = '13', // 로그아웃
7+
SECTION_INTERACT_MAIN = '21', // 메인 페이지 - 통계 블록 열림/닫힘
8+
SORT_INTERACT_MAIN = '22', // 메인 페이지 - 정렬(오름차순, 방식) 선택
9+
REFRESH_INTERACT_MAIN = '23', // 메인 페이지 - 새로고침 버튼
10+
SORT_INTERACT_BOARD = '31', // 리더보드 페이지 - 정렬 방식 선택
811
NOTHING = '99',
912
}
1013

0 commit comments

Comments
 (0)