params => [
{desc => "Authentication token", type => "string"},
{desc => "Patron ID (optional if Email address specified)", type => "number"},
- {desc => "Additional note text (optional)", type => "string"},
{desc => "penalty org unit ID (optional)", type => "number"},
{desc => "Email address (optional)", type => "string"}
],
params => [
{desc => "Authentication token", type => "string"},
{desc => "Patron ID (optional if Phone Number specified)", type => "number"},
- {desc => "Additional note text (optional)", type => "string"},
{desc => "penalty org unit ID (optional)", type => "number"},
{desc => "Phone Number (optional)", type => "string"}
],
params => [
{desc => "Authentication token", type => "string"},
{desc => "Patron ID (optional if Phone Number specified)", type => "number"},
- {desc => "Additional note text (optional)", type => "string"},
{desc => "penalty org unit ID (optional)", type => "number"},
{desc => "Phone Number (optional)", type => "string"}
],
params => [
{desc => "Authentication token", type => "string"},
{desc => "Patron ID (optional if Phone Number specified)", type => "number"},
- {desc => "Additional note text (optional)", type => "string"},
{desc => "penalty org unit ID (optional, default to top of org tree)",
type => "number"},
{desc => "Phone Number (optional)", type => "string"}
);
sub mark_users_contact_invalid {
- my ($self, $conn, $auth, $patron_id, $addl_note, $penalty_ou, $contact) = @_;
+ my ($self, $conn, $auth, $patron_id, $penalty_ou, $contact) = @_;
# This method invalidates an email address or a phone_number which
# removes the bad email address or phone number, copying its contents
}
return OpenILS::Utils::BadContact->mark_users_contact_invalid(
- $e, $contact_type, $howfind,
- $addl_note, $penalty_ou, $e->requestor->id
+ $e, $contact_type, $howfind, $penalty_ou, $e->requestor->id
);
}