mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
37 lines
882 B
PHP
37 lines
882 B
PHP
<?php
|
|
|
|
return [
|
|
'upload_avatar' => [
|
|
'type' => 'anomaly.field_type.boolean',
|
|
'config' => [
|
|
'default_value' => 1
|
|
],
|
|
],
|
|
'show_my_ads' => [
|
|
'type' => 'anomaly.field_type.boolean',
|
|
'config' => [
|
|
'default_value' => 1
|
|
],
|
|
],
|
|
'show_tax_office' => [
|
|
'type' => 'anomaly.field_type.boolean',
|
|
'config' => [
|
|
'default_value' => true,
|
|
],
|
|
],
|
|
'google_captcha_site_key' => [
|
|
'type' => 'anomaly.field_type.text',
|
|
],
|
|
'google_captcha_secret_key' => [
|
|
'type' => 'anomaly.field_type.text',
|
|
],
|
|
"score_threshold" => [
|
|
"type" => "anomaly.field_type.decimal",
|
|
"config" => [
|
|
"default_value" => 0.5,
|
|
"decimals" => 1,
|
|
"min" => 0.0,
|
|
"max" => 1.0,
|
|
]
|
|
],
|
|
]; |