공부의 숲 프로젝트 회고록
·
프로젝트
프로젝트 개요공부의 숲에서 스터디를 만들어서 습관들을 관리하고 기록을 볼 수 있습니다. 담당 작업백엔드오늘의 습관 수정const modifyHabits = async (data) => { const habits = data.habits; const result = []; await Promise.all( habits.map(async (habitElement) => { if (habitElement.id) { const isHabit = await prisma.habit.findUnique({ where: { id: habitElement.id }, }); if (isHabit) { // update ..