View | Details | Raw Unified | Return to bug 17006
Collapse All | Expand All

(-)a/Koha/REST/V1/Patrons/Password.pm (-2 / +1 lines)
Lines 59-65 sub set { Link Here
59
    return try {
59
    return try {
60
60
61
        ## Change password
61
        ## Change password
62
        $patron->set_password($password);
62
        $patron->set_password({ password => $password });
63
63
64
        return $c->render( status => 200, openapi => "" );
64
        return $c->render( status => 200, openapi => "" );
65
    }
65
    }
66
- 

Return to bug 17006