public async getCurrentAllDaySchedule()

in lambda/src/GaroxaController.ts [178:194]


    public async getCurrentAllDaySchedule(detail: GaroonScheduleDetail){
        const allDaySchedules = await this.getCurrentAllDayScheduleRowData(detail)
        const allDayScheduleDescriptions: {
            subject: string
        }[] = []

        allDaySchedules.forEach((event)=>{
            const subject = event.subject

            allDayScheduleDescriptions.push({
                subject: subject
            })
        })

        console.log(allDayScheduleDescriptions)
        return allDayScheduleDescriptions
    }