kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
43 wiersze
1.5 KiB
Python
43 wiersze
1.5 KiB
Python
from dynamic_preferences import types
|
|
from dynamic_preferences.registries import global_preferences_registry
|
|
|
|
from funkwhale_api.common import preferences as common_preferences
|
|
|
|
from . import models
|
|
|
|
moderation = types.Section("moderation")
|
|
|
|
|
|
@global_preferences_registry.register
|
|
class AllowListEnabled(types.BooleanPreference):
|
|
section = moderation
|
|
name = "allow_list_enabled"
|
|
verbose_name = "Enable allow-listing"
|
|
help_text = "If enabled, only interactions with explicitely allowed domains will be authorized."
|
|
default = False
|
|
|
|
|
|
@global_preferences_registry.register
|
|
class AllowListPublic(types.BooleanPreference):
|
|
section = moderation
|
|
name = "allow_list_public"
|
|
verbose_name = "Publish your allowed-domains list"
|
|
help_text = (
|
|
"If enabled, everyone will be able to retrieve the list of domains you allowed. "
|
|
"This is useful on open setups, to help people decide if they want to join your pod, or to "
|
|
"make your moderation policy public."
|
|
)
|
|
default = False
|
|
|
|
|
|
@global_preferences_registry.register
|
|
class UnauthenticatedReportTypes(common_preferences.StringListPreference):
|
|
show_in_api = True
|
|
section = moderation
|
|
name = "unauthenticated_report_types"
|
|
default = ["takedown_request", "illegal_content"]
|
|
verbose_name = "Accountless report categories"
|
|
help_text = "A list of categories for which external users (without an account) can submit a report"
|
|
choices = models.REPORT_TYPES
|
|
field_kwargs = {"choices": choices, "required": False}
|