diff --git a/www/go/core/data/Model.php b/www/go/core/data/Model.php index 9b5c42cfdb..4a51882339 100644 --- a/www/go/core/data/Model.php +++ b/www/go/core/data/Model.php @@ -73,7 +73,11 @@ public static function getApiProperties(): array if ($method->isStatic()) { continue; } - + + if (strpos($method->getDocComment(), '@noapi') > 0) { + continue; + } + if (substr($method->getName(), 0, 3) == 'get') { $params = $method->getParameters();