Files
librenms-librenms/html/includes/graphs/device/auth.inc.php

11 lines
189 B
PHP
Raw Normal View History

<?php
if ($config['allow_unauth_graphs'] || device_permitted($device['device_id']))
{
$title = generate_device_link($device);
$graph_title = $device['hostname'];
$auth = TRUE;
}
?>