Fix: Swagger memberId 제외

This commit is contained in:
김용수 2024-09-19 13:59:02 +09:00
parent 53a455fc5f
commit 36cec776bd

View File

@ -1,5 +1,7 @@
package com.worlabel.global.annotation; package com.worlabel.global.annotation;
import io.swagger.v3.oas.annotations.Parameter;
import java.lang.annotation.Documented; import java.lang.annotation.Documented;
import java.lang.annotation.Inherited; import java.lang.annotation.Inherited;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;
@ -8,5 +10,6 @@ import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Inherited @Inherited
@Documented @Documented
@Parameter(hidden = true)
public @interface CurrentUser { public @interface CurrentUser {
} }