App check command

This commit is contained in:
Yurii
2026-06-25 14:38:38 +03:00
parent 515c0dd13a
commit d08668cdb8
6 changed files with 203 additions and 5 deletions

View File

@@ -60,4 +60,12 @@ class SystemConfig
{
return (bool) $this->config->get('restrictedMode');
}
/**
* @since 10.0.0
*/
public function isCronEnabled(): bool
{
return !$this->config->get('cronDisabled');
}
}