18 lines
581 B
PHP
18 lines
581 B
PHP
<?php
|
|
/**
|
|
* Default config header
|
|
*
|
|
* To replace this add a file D:\domains\package-tao\taoProctoring\config/header/ActivityMonitoringService.conf.php
|
|
*/
|
|
|
|
use oat\taoProctoring\model\ActivityMonitoringService;
|
|
|
|
return new ActivityMonitoringService([
|
|
ActivityMonitoringService::OPTION_ACTIVE_USER_THRESHOLD => 300,
|
|
ActivityMonitoringService::OPTION_COMPLETED_ASSESSMENTS_AUTO_REFRESH => 30,
|
|
ActivityMonitoringService::OPTION_ASSESSMENT_ACTIVITY_AUTO_REFRESH => 60,
|
|
\oat\taoProctoring\model\ActivityMonitoringService::OPTION_USER_ACTIVITY_WIDGETS => [
|
|
|
|
]
|
|
]);
|