diff --git a/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/UserController.kt b/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/UserController.kt index a8341c7d6..216d0d80b 100644 --- a/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/UserController.kt +++ b/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/UserController.kt @@ -64,6 +64,7 @@ class UserController( @Operation(summary = "Retrieve current user", tags = [TagNames.CURRENT_USER]) fun getCurrentUser( @AuthenticationPrincipal principal: KomgaPrincipal, + @RequestParam(name = "remember-me", required = false) rememberMe: Boolean?, ): UserDto = principal.toDto() @PatchMapping("me/password")