TravelMate-KU / TravelMate-Server

0 stars 1 forks source link

๐Ÿ› disable ๊ด€๋ จ ๋ณ€์ˆ˜ ์ •๋ฆฌ #20

Closed david-parkk closed 4 months ago

david-parkk commented 4 months ago

๋ฌธ์ œ์ƒํ™ฉ

before

    @GetMapping("/{courseId}")
    private String showCourseInfo(@PathVariable Long userId, @PathVariable Long courseId) {
        log.info("[CourseController.showCourseInfo]");
        return "unwell_deepsearch";
    }

after

    @GetMapping("/{courseId}")
    private String showCourseInfo(@PathVariable Long userId, @PathVariable Long courseId) {
        log.info("[CourseController.showCourseInfo]");
        return "disable_deepsearch";
    }
jaeuk520 commented 4 months ago

์ข‹์•„์š”:)