Lines 531-537
sub get_metadata_enrichment {
Link Here
|
531 |
my @services = (); |
531 |
my @services = (); |
532 |
foreach my $plugin(@candidates) { |
532 |
foreach my $plugin(@candidates) { |
533 |
my $supported = $plugin->provides_api(); |
533 |
my $supported = $plugin->provides_api(); |
534 |
if ($supported->{type} eq 'cud-search') { |
534 |
if ($supported->{type} eq 'search') { |
535 |
push @services, $supported; |
535 |
push @services, $supported; |
536 |
} |
536 |
} |
537 |
} |
537 |
} |
538 |
- |
|
|