Skip to content

Commit

Permalink
fix: add the parent argument to make the id parameter work
Browse files Browse the repository at this point in the history
  • Loading branch information
iryabov committed Jan 15, 2025
1 parent 76d059e commit a306334
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class TestSessionRoute()
@Resource("method-ignore-rules")
class MethodIgnoreRulesRoute() {
@Resource("/{id}")
class Id(val id: Int)
class Id(val parent: MethodIgnoreRulesRoute, val id: Int)
}
//@Resource("/groups/{groupId}/agents/{appId}/builds/{buildVersion}/raw-javascript-coverage")
//class RawJavaScriptCoverage(val groupId: String, val appId: String, val buildVersion: String)
Expand Down

0 comments on commit a306334

Please sign in to comment.