use remote_is_discoverable instead of local netdisco config

This commit is contained in:
Oliver Gorwits
2022-05-17 06:27:45 +01:00
parent e1bfd917a9
commit 4d0e0cc613
3 changed files with 9 additions and 7 deletions

View File

@@ -19,9 +19,6 @@ set('connected_properties' => [
hook 'before_template' => sub {
my $tokens = shift;
# allow checking of discoverability of remote connected device
$tokens->{has_snmp} = sub { not match_to_setting(shift, 'discover_no_type') };
my $defaults = var('sidebar_defaults')->{'device_ports'}
or return;

View File

@@ -16,6 +16,11 @@ register_admin_task(
}
);
# just to note a problem with this query:
# using DeviceSkip to see if discover is blocked, but that table only shows
# blocked actions on backends not permitted, so there may be a backend running
# that permits the action, we would not know.
get '/ajax/content/admin/undiscoveredneighbors' => require_role admin => sub {
my @results
= schema('netdisco')->resultset('Virtual::UndiscoveredNeighbors')->hri->all;