
--- client/views/pages/AppRouter.js
+++ client/views/pages/AppRouter.js
... | ... | @@ -263,7 +263,9 @@ |
263 | 263 |
if (to.path.includes('/main.page')) { |
264 | 264 |
await cntnStatsSave(null, mbrAuth); // 메인 페이지 접속 시 사용자 접속 통계 증가 |
265 | 265 |
} else { |
266 |
- await cntnStatsSave(to.meta.typeId, mbrAuth); // 그외에는 각 종류(게시판, 콘텐츠)에 맞는 통계 증가 |
|
266 |
+ if (!to.meta.typeId.includes('BBS_MNG') || to.path.includes('/list.page')) { |
|
267 |
+ await cntnStatsSave(to.meta.typeId, mbrAuth); |
|
268 |
+ } |
|
267 | 269 |
} |
268 | 270 |
store.commit('setPageAuth', pageAuth); |
269 | 271 |
next(); |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?