mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Config;
|
|
|
|
/**
|
|
* Class FlagConstants.
|
|
*/
|
|
class FlagConstants
|
|
{
|
|
final public const ALLOW_VIDEO_STREAMS_FLAG = 'allow_video_streams';
|
|
|
|
final public const ALLOW_VIDEO_STREAMS_FLAG_QUALIFIED = 'flags.allow_video_streams';
|
|
|
|
final public const ALLOW_AUDIO_STREAMS_FLAG = 'allow_audio_streams';
|
|
|
|
final public const ALLOW_AUDIO_STREAMS_FLAG_QUALIFIED = 'flags.allow_audio_streams';
|
|
|
|
final public const ALLOW_DISCORD_NOTIFICATIONS_FLAG = 'allow_discord_notifications';
|
|
|
|
final public const ALLOW_DISCORD_NOTIFICATIONS_FLAG_QUALIFIED = 'flags.allow_discord_notifications';
|
|
|
|
final public const ALLOW_VIEW_RECORDING_FLAG = 'allow_view_recording';
|
|
|
|
final public const ALLOW_VIEW_RECORDING_FLAG_QUALIFIED = 'flags.allow_view_recording';
|
|
|
|
final public const ALLOW_DUMP_DOWNLOADING_FLAG = 'allow_dump_downloading';
|
|
|
|
final public const ALLOW_DUMP_DOWNLOADING_FLAG_QUALIFIED = 'flags.allow_dump_downloading';
|
|
|
|
final public const ALLOW_SCRIPT_DOWNLOADING_FLAG = 'allow_script_downloading';
|
|
|
|
final public const ALLOW_SCRIPT_DOWNLOADING_FLAG_QUALIFIED = 'flags.allow_script_downloading';
|
|
|
|
final public const ALLOW_PLAYLIST_MANAGEMENT = 'allow_playlist_management';
|
|
|
|
final public const ALLOW_PLAYLIST_MANAGEMENT_QUALIFIED = 'flags.allow_playlist_management';
|
|
}
|