|
31 | 31 | * @property bool $emailbrokensubmission |
32 | 32 | * @property bool $emailredundantfailures |
33 | 33 | * @property ?string $cvsviewertype |
34 | | - * @property int $testtimestd |
35 | | - * @property int $testtimestdthreshold |
| 34 | + * @property float $testtimestd |
| 35 | + * @property float $testtimestdthreshold |
36 | 36 | * @property bool $showtesttime |
37 | 37 | * @property int $testtimemaxstatus |
38 | 38 | * @property int $emailmaxitems |
@@ -108,6 +108,33 @@ class Project extends Model |
108 | 108 | 'coveragethreshold' => 'integer', |
109 | 109 | 'showcoveragecode' => 'boolean', |
110 | 110 | 'authenticatesubmissions' => 'boolean', |
| 111 | + 'testtimestd' => 'float', |
| 112 | + 'testtimestdthreshold' => 'float', |
| 113 | + 'testtimemaxstatus' => 'integer', |
| 114 | + 'emailmaxitems' => 'integer', |
| 115 | + 'emailmaxchars' => 'integer', |
| 116 | + 'autoremovetimeframe' => 'integer', |
| 117 | + 'uploadquota' => 'integer', |
| 118 | + ]; |
| 119 | + |
| 120 | + protected $attributes = [ |
| 121 | + 'coveragethreshold' => 70, |
| 122 | + 'nightlytime' => '00:00:00', |
| 123 | + 'emaillowcoverage' => false, |
| 124 | + 'emailtesttimingchanged' => false, |
| 125 | + 'emailbrokensubmission' => true, |
| 126 | + 'emailredundantfailures' => false, |
| 127 | + 'testtimestd' => 4, |
| 128 | + 'testtimestdthreshold' => 1, |
| 129 | + 'showtesttime' => false, |
| 130 | + 'testtimemaxstatus' => 3, |
| 131 | + 'emailmaxitems' => 5, |
| 132 | + 'emailmaxchars' => 255, |
| 133 | + 'displaylabels' => true, |
| 134 | + 'autoremovetimeframe' => 90, |
| 135 | + 'uploadquota' => 10, |
| 136 | + 'showcoveragecode' => true, |
| 137 | + 'authenticatesubmissions' => false, |
111 | 138 | ]; |
112 | 139 |
|
113 | 140 | public const PROJECT_ADMIN = 2; |
|
0 commit comments