Uses of Record Class
com.ericbouchut.learndev.course.dto.LessonForm
Packages that use LessonForm
-
Uses of LessonForm in com.ericbouchut.learndev.course
Methods in com.ericbouchut.learndev.course with parameters of type LessonFormModifier and TypeMethodDescriptionInstructorCourseController.createLesson(Long courseId, @Valid LessonForm form, org.springframework.validation.BindingResult binding, Principal principal, org.springframework.ui.Model model) Create a DRAFT lesson at the end of the course.InstructorCourseService.createLesson(Course course, LessonForm form) Create a DRAFT lesson at the end of the course (position max + 1).InstructorCourseController.updateLesson(Long courseId, Long lessonId, @Valid LessonForm form, org.springframework.validation.BindingResult binding, Principal principal, org.springframework.ui.Model model) Update the lesson from the submitted form.voidInstructorCourseService.updateLesson(Lesson lesson, LessonForm form) Update the title and Markdown content of a lesson.