mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 09:34:50 +02:00
6015dcbbbf
* refactor: migration from laravel-enum package to native php enums * style: fix StyleCI findings
22 lines
620 B
PHP
22 lines
620 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Enums\Rules\ModerationService;
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Moderation Service
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These values determine which service is used to assist with content filtering
|
|
| from user-sourced input. By default, no moderation is applied. We want
|
|
| to make this feature opt-in since it relies on an external service.
|
|
|
|
|
*/
|
|
|
|
'moderation_service' => env('MODERATION_SERVICE', ModerationService::NONE->value),
|
|
];
|