39 lines
1.0 KiB
PHP
39 lines
1.0 KiB
PHP
<?php
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Kodular Görev Akışı
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| İzin verilen hedefleri ve görevlerin bağlanacağı gerçek müşteri hesabını
|
||
| tanımlar. Görevler istemciye gönderilmeden önce token ve cihazla eşleştirilir.
|
||
|
|
||
| Yazar: Gökhan Engin - İletişim : https://bit.ly/YazılımUzmanı
|
||
|
|
||
*/
|
||
return [
|
||
'allowed_hosts' => [
|
||
'datakurtar.com',
|
||
],
|
||
|
||
'customer_email' => env('TEST_TASKS_CUSTOMER_EMAIL'),
|
||
|
||
'tasks' => [
|
||
[
|
||
'task_id' => 'T-1024',
|
||
'url' => 'https://datakurtar.com/#iletisim',
|
||
'duration_seconds' => 20,
|
||
],
|
||
[
|
||
'task_id' => 'T-1025',
|
||
'url' => 'https://datakurtar.com/#teklif',
|
||
'duration_seconds' => 20,
|
||
],
|
||
[
|
||
'task_id' => 'T-1026',
|
||
'url' => 'https://datakurtar.com/takip',
|
||
'duration_seconds' => 30,
|
||
],
|
||
],
|
||
];
|