diff --git a/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java b/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java index 2edf588..136536c 100644 --- a/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java +++ b/src/main/java/org/withtime/be/withtimebe/domain/date/entity/DateCourse.java @@ -3,6 +3,7 @@ import jakarta.persistence.*; import lombok.*; import org.withtime.be.withtimebe.domain.member.entity.Member; +import org.withtime.be.withtimebe.global.common.BaseEntity; @Entity @Getter @@ -10,7 +11,7 @@ @NoArgsConstructor(access = AccessLevel.PROTECTED) @AllArgsConstructor(access = AccessLevel.PRIVATE) @Table(name = "date_course") -public class DateCourse { +public class DateCourse extends BaseEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) diff --git a/src/main/java/org/withtime/be/withtimebe/global/security/SecurityConfig.java b/src/main/java/org/withtime/be/withtimebe/global/security/SecurityConfig.java index 32f0c8a..92ea247 100644 --- a/src/main/java/org/withtime/be/withtimebe/global/security/SecurityConfig.java +++ b/src/main/java/org/withtime/be/withtimebe/global/security/SecurityConfig.java @@ -55,6 +55,7 @@ public class SecurityConfig { API_PREFIX + "/faqs/**", API_PREFIX + "/logs/keyword/**", API_PREFIX + "/logs/dateplaces/**", + API_PREFIX + "/logs/datecourses/**", "/oauth2/authorization/**", "/swagger-ui/**", "/swagger-resources/**",