Skip to content

Commit

Permalink
[+] #76 Jwt 인가처리가 필요한 메서드에 정의할 어노테이션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
woody35545 committed Oct 4, 2023
1 parent 94e9bab commit f67f8f6
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.teamseven.MusicVillain.Aspect;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target({java.lang.annotation.ElementType.METHOD})
public @interface JwtAuthorizationRequired {
}

0 comments on commit f67f8f6

Please sign in to comment.