[open-ils-commits] r13361 - branches/rel_1_4/Open-ILS/src/perlmods/OpenILS/Application/Search (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jun 10 08:39:01 EDT 2009


Author: erickson
Date: 2009-06-10 08:39:01 -0400 (Wed, 10 Jun 2009)
New Revision: 13361

Modified:
   branches/rel_1_4/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm
Log:
enabled authoritative for several methods

Modified: branches/rel_1_4/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm
===================================================================
--- branches/rel_1_4/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm	2009-06-10 12:38:31 UTC (rev 13360)
+++ branches/rel_1_4/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm	2009-06-10 12:39:01 UTC (rev 13361)
@@ -289,7 +289,9 @@
 
 __PACKAGE__->register_method(
 	method => 'fleshed_by_barcode',
-	api_name	=> "open-ils.search.asset.copy.fleshed2.find_by_barcode",);
+	api_name	=> "open-ils.search.asset.copy.fleshed2.find_by_barcode",
+    authoritative => 1,
+);
 sub fleshed_by_barcode {
 	my( $self, $conn, $barcode ) = @_;
 	my $e = new_editor();
@@ -302,7 +304,9 @@
 
 __PACKAGE__->register_method(
 	method	=> "fleshed_copy_retrieve2",
-	api_name	=> "open-ils.search.asset.copy.fleshed2.retrieve",);
+	api_name	=> "open-ils.search.asset.copy.fleshed2.retrieve",
+    authoritative => 1,
+);
 
 sub fleshed_copy_retrieve2 { 
 	my( $self, $client, $id ) = @_;
@@ -343,7 +347,8 @@
 
 __PACKAGE__->register_method(
 	method => 'flesh_copy_custom',
-	api_name => 'open-ils.search.asset.copy.fleshed.custom'
+	api_name => 'open-ils.search.asset.copy.fleshed.custom',
+    authoritative => 1,
 );
 
 sub flesh_copy_custom {
@@ -386,7 +391,8 @@
 
 __PACKAGE__->register_method(
     method => 'title_id_by_item_barcode',
-    api_name => 'open-ils.search.bib_id.by_barcode'
+    api_name => 'open-ils.search.bib_id.by_barcode',
+    authoritative => 1,
 );
 
 sub title_id_by_item_barcode {



More information about the open-ils-commits mailing list