Skip to content

Commit

Permalink
feat: hide memberId parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
CChuYong committed Jul 1, 2024
1 parent 450d022 commit f304c9c
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package kr.mafoo.photo.annotation;

import io.swagger.v3.oas.annotations.Parameter;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Parameter(hidden = true)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.TYPE_PARAMETER})
public @interface RequestMemberId {
Expand Down

0 comments on commit f304c9c

Please sign in to comment.