63 lines
3.3 KiB
Go
63 lines
3.3 KiB
Go
|
package configrepository
|
||
|
|
||
|
const (
|
||
|
extraContentKey = "extra_page_content"
|
||
|
streamTitleKey = "stream_title"
|
||
|
adminPasswordKey = "admin_password_key"
|
||
|
logoPathKey = "logo_path"
|
||
|
logoUniquenessKey = "logo_uniqueness"
|
||
|
serverSummaryKey = "server_summary"
|
||
|
serverWelcomeMessageKey = "server_welcome_message"
|
||
|
serverNameKey = "server_name"
|
||
|
serverURLKey = "server_url"
|
||
|
httpPortNumberKey = "http_port_number"
|
||
|
httpListenAddressKey = "http_listen_address"
|
||
|
websocketHostOverrideKey = "websocket_host_override"
|
||
|
rtmpPortNumberKey = "rtmp_port_number"
|
||
|
serverMetadataTagsKey = "server_metadata_tags"
|
||
|
directoryEnabledKey = "directory_enabled"
|
||
|
directoryRegistrationKeyKey = "directory_registration_key"
|
||
|
socialHandlesKey = "social_handles"
|
||
|
peakViewersSessionKey = "peak_viewers_session"
|
||
|
peakViewersOverallKey = "peak_viewers_overall"
|
||
|
lastDisconnectTimeKey = "last_disconnect_time"
|
||
|
ffmpegPathKey = "ffmpeg_path"
|
||
|
nsfwKey = "nsfw"
|
||
|
s3StorageConfigKey = "s3_storage_config"
|
||
|
videoLatencyLevel = "video_latency_level"
|
||
|
videoStreamOutputVariantsKey = "video_stream_output_variants"
|
||
|
chatDisabledKey = "chat_disabled"
|
||
|
externalActionsKey = "external_actions"
|
||
|
customStylesKey = "custom_styles"
|
||
|
customJavascriptKey = "custom_javascript"
|
||
|
videoCodecKey = "video_codec"
|
||
|
blockedUsernamesKey = "blocked_usernames"
|
||
|
publicKeyKey = "public_key"
|
||
|
privateKeyKey = "private_key"
|
||
|
serverInitDateKey = "server_init_date"
|
||
|
federationEnabledKey = "federation_enabled"
|
||
|
federationUsernameKey = "federation_username"
|
||
|
federationPrivateKey = "federation_private"
|
||
|
federationGoLiveMessageKey = "federation_go_live_message"
|
||
|
federationShowEngagementKey = "federation_show_engagement"
|
||
|
federationBlockedDomainsKey = "federation_blocked_domains"
|
||
|
suggestedUsernamesKey = "suggested_usernames"
|
||
|
chatJoinMessagesEnabledKey = "chat_join_messages_enabled"
|
||
|
chatEstablishedUsersOnlyModeKey = "chat_established_users_only_mode"
|
||
|
chatSpamProtectionEnabledKey = "chat_spam_protection_enabled"
|
||
|
chatSlurFilterEnabledKey = "chat_slur_filter_enabled"
|
||
|
notificationsEnabledKey = "notifications_enabled"
|
||
|
discordConfigurationKey = "discord_configuration"
|
||
|
browserPushConfigurationKey = "browser_push_configuration"
|
||
|
browserPushPublicKeyKey = "browser_push_public_key"
|
||
|
// nolint:gosec
|
||
|
browserPushPrivateKeyKey = "browser_push_private_key"
|
||
|
hasConfiguredInitialNotificationsKey = "has_configured_initial_notifications"
|
||
|
hideViewerCountKey = "hide_viewer_count"
|
||
|
customOfflineMessageKey = "custom_offline_message"
|
||
|
customColorVariableValuesKey = "custom_color_variable_values"
|
||
|
streamKeysKey = "stream_keys"
|
||
|
disableSearchIndexingKey = "disable_search_indexing"
|
||
|
videoServingEndpointKey = "video_serving_endpoint"
|
||
|
)
|