mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-03 20:40:17 -05:00
16 lines
295 B
C++
16 lines
295 B
C++
|
|
/* Icinga 2 | (c) 2025 Icinga GmbH | GPLv2+ */
|
||
|
|
|
||
|
|
#include "base/scriptpermission.hpp"
|
||
|
|
|
||
|
|
using namespace icinga;
|
||
|
|
|
||
|
|
bool ScriptPermissionChecker::CanAccessGlobalVariable(const String&)
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool ScriptPermissionChecker::CanAccessConfigObject(const ConfigObject::Ptr&)
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|