Skip to content

Commit

Permalink
Merge branch 'dev' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Turmoil committed Sep 4, 2024
2 parents 3e7c1c5 + 455bca0 commit ccae492
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@
*/
@Component
@Aspect
@Order(300)
@RequiredArgsConstructor
@Slf4j
public class ValidateCourseAspect {
private final ICookieSetter courseCookieSetter;
private final Mappers mappers;

@Around("@annotation(cn.edu.buaa.patpat.boot.modules.course.aspect.ValidateCourse)")
@Order(300)
public Object intercept(ProceedingJoinPoint point) throws Throwable {
Object[] args = point.getArgs();
Method method = ((MethodSignature) point.getSignature()).getMethod();
Expand Down

0 comments on commit ccae492

Please sign in to comment.