Skip to content

Commit

Permalink
add name properity for requestparam #64
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Pelkmann committed Oct 11, 2022
1 parent 4ffbfd4 commit b3457ae
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,9 @@ internal class ParameterHandler : AspectHandlerI {
val defaultValue = requestParamAspect.getPropertyValue("defaultValue")
if (defaultValue != null)
addPair("defaultValue", "\"$defaultValue\"")

val name = requestParamAspect.getPropertyValue("name")
if (name != null)
addPair("name", "\"$name\"")
}
}

0 comments on commit b3457ae

Please sign in to comment.