Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Dumas committed Sep 22, 2023
1 parent dafc290 commit a59f076
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ final class ResourcesTrialRoutes(
}

private def generateRoute: Route =
((get | post) & pathPrefix("trial") & pathPrefix("resources")) {
(pathPrefix("trial") & pathPrefix("resources") & post) {
extractCaller { implicit caller =>
(resolveProjectRef & pathEndOrSingleSlash) { project =>
authorizeFor(project, Write).apply {
Expand Down

0 comments on commit a59f076

Please sign in to comment.