We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
대시보드 타입을 통일합니다.
HAPPY, SAD => BAR_CHART
BEST_WORTH => BUBBLE_CHART
CHARACTER => BINARY
DB에 있는 데이터를 업데이트
getDashboard 로직에서 이전 대시보드 타입으로 계산하는 로직 제거
기존 대시보드 타입(HAPPY, SAD, BEST_WORTH, CHARACTER) 제거
The text was updated successfully, but these errors were encountered:
feat: DB에 존재하는 대시보드 타입 모두 반환하도록 수정(#178)
d5189cf
fix: RankDashboardComponent 추가(#178)
63b7372
Merge pull request #181 from dnd-side-project/feat/#178
77ec33b
db.dashboards.find({}).forEach(function (dashboard) { Object.values(dashboard.statistics).forEach((value) => { Object.entries(value).forEach(([key, v]) => { if (v.dashboardType === 'HAPPY' || v.dashboardType === 'SAD') { v.dashboardType = 'BAR_CHART'; } else if (v.dashboardType === 'BEST_WORTH') { v.dashboardType = 'BUBBLE_CHART'; } else if (v.dashboardType === 'CHARACTER') { v.dashboardType = 'BINARY'; } }) }); db.dashboards.updateOne( {_id: dashboard._id}, {$set: {"statistics": dashboard.statistics}} ); });
위 쿼리로 DB 데이터 변경해야 함
Sorry, something went wrong.
@rlacksgus97 운영에 배포하기 전에 DB에 있는 questions.의 대시보드 타입 꼭 바꿔야 함
eun-seong
No branches or pull requests
기능 설명
대시보드 타입을 통일합니다.
요구 사항
HAPPY, SAD => BAR_CHART
BEST_WORTH => BUBBLE_CHART
CHARACTER => BINARY
DB에 있는 데이터를 업데이트
getDashboard 로직에서 이전 대시보드 타입으로 계산하는 로직 제거
기존 대시보드 타입(HAPPY, SAD, BEST_WORTH, CHARACTER) 제거
The text was updated successfully, but these errors were encountered: