);
__PACKAGE__->register_method(
- method => "run_method",
- api_name => "open-ils.circ.renew.auto",
- signature => q/@see open-ils.circ.renew/,
- notes => q/
- The open-ils.circ.renew.auto API is deprecated. Please use the
- auto_renew => 1 option to open-ils.circ.renew, instead.
- /
-);
-
-__PACKAGE__->register_method(
method => "run_method",
api_name => "open-ils.circ.renew",
notes => <<" NOTES");
}
$circulator->is_renewal(1) if $api =~ /renew/;
- $circulator->auto_renewal(1) if $api =~ /renew.auto/;
$circulator->is_checkin(1) if $api =~ /checkin/;
$circulator->is_checkout(1) if $api =~ /checkout/;
$circulator->override(1) if $api =~ /override/o;
--- /dev/null
+open-ils.circ.renew.auto Removed
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+The deprecated `open-ils.circ.renew.auto` API was removed. You will
+want to use `open-ils.circ.renew` with the `auto_renewal` option set
+to 1. This mainly affects those who have written custom code using
+the open-ils.circ backend.