Skip to content

Commit

Permalink
pass param through in handler
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Jun 25, 2024
1 parent 9758516 commit 4a8026a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ final case class ProjectsEndpointsHandler(
val deleteAdminProjectsByProjectShortcodeEraseHandler =
SecuredEndpointHandler(
projectsEndpoints.Secured.deleteAdminProjectsByProjectShortcodeErase,
user => (id: Shortcode) => restService.eraseProject(id, user),
user => (id: Shortcode, keepAssets: Boolean) => restService.eraseProject(id, user, keepAssets),
)

val getAdminProjectsExportsHandler =
Expand Down

0 comments on commit 4a8026a

Please sign in to comment.