mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
PHTML
15 lines
394 B
PHTML
4 years ago
|
<?php
|
||
|
|
||
|
return [
|
||
|
'enabled' => env('CAPTCHA_ENABLED', false),
|
||
|
'secret' => env('CAPTCHA_SECRET', 'default_secret'),
|
||
|
'sitekey' => env('CAPTCHA_SITEKEY', 'default_sitekey'),
|
||
|
'http_client' => \Buzz\LaravelHCaptcha\HttpClient::class,
|
||
|
'options' => [
|
||
|
'multiple' => false,
|
||
|
'lang' => app()->getLocale(),
|
||
|
],
|
||
|
'attributes' => [
|
||
|
'theme' => 'light'
|
||
|
],
|
||
|
];
|