From: erickson Date: Mon, 5 Feb 2007 18:59:04 +0000 (+0000) Subject: removed some unecessary atomic handling X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=341d18dbb6120ceabd8c3f97118c31d57f542bb2;p=Evergreen.git removed some unecessary atomic handling git-svn-id: svn://svn.open-ils.org/ILS/trunk@6877 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm b/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm index bf77c7d2f3..6c79a58836 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Collections.pm @@ -40,6 +40,7 @@ __PACKAGE__->register_method( api_name => 'open-ils.collections.users_of_interest.retrieve', api_level => 1, argc => 4, + stream => 1, signature => { desc => q/ Returns an array of user information objects that the system @@ -92,17 +93,9 @@ __PACKAGE__->register_method( ); -__PACKAGE__->register_method( - method => 'users_of_interest', - api_name => 'open-ils.collections.users_of_interest.retrieve.atomic', - stream => 1, -); - sub users_of_interest { my( $self, $conn, $auth, $age, $fine_level, $location ) = @_; - my $atomic = $self->api_name =~ /atomic/; - return OpenILS::Event->new('BAD_PARAMS') unless ($auth and $age and $fine_level and $location);