enabled authoritative for several methods
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 10 Jun 2009 12:38:31 +0000 (12:38 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 10 Jun 2009 12:38:31 +0000 (12:38 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@13360 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm

index 504104b..bfda50c 100644 (file)
@@ -355,7 +355,9 @@ sub fleshed_copy_retrieve {
 
 __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();
@@ -368,7 +370,9 @@ sub fleshed_by_barcode {
 
 __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 ) = @_;
@@ -409,7 +413,8 @@ sub fleshed_copy_retrieve2 {
 
 __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 {
@@ -452,7 +457,8 @@ sub biblio_barcode_to_title {
 
 __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 {