音楽で楽しみましょう!-Let's have fun with music!-
Signed-off-by: Shin'ya Minazuki <shinyoukai@laidback.moe>
This commit is contained in:
parent
7c3206bf83
commit
54c6d22102
517 changed files with 637 additions and 639 deletions
|
|
@ -1,63 +0,0 @@
|
|||
from dynamic_preferences import types
|
||||
from dynamic_preferences.registries import global_preferences_registry
|
||||
|
||||
federation = types.Section("federation")
|
||||
|
||||
|
||||
@global_preferences_registry.register
|
||||
class MusicCacheDuration(types.IntPreference):
|
||||
show_in_api = True
|
||||
section = federation
|
||||
name = "music_cache_duration"
|
||||
default = 60 * 24 * 2
|
||||
verbose_name = "Music cache duration"
|
||||
help_text = (
|
||||
"How many minutes do you want to keep a copy of federated tracks "
|
||||
"locally? Federated files that were not listened in this interval "
|
||||
"will be erased and refetched from the remote on the next listening."
|
||||
)
|
||||
field_kwargs = {"required": False}
|
||||
|
||||
|
||||
@global_preferences_registry.register
|
||||
class Enabled(types.BooleanPreference):
|
||||
section = federation
|
||||
name = "enabled"
|
||||
default = True
|
||||
verbose_name = "Federation enabled"
|
||||
help_text = (
|
||||
"Use this setting to enable or disable federation logic and API" " globally."
|
||||
)
|
||||
|
||||
|
||||
@global_preferences_registry.register
|
||||
class CollectionPageSize(types.IntPreference):
|
||||
section = federation
|
||||
name = "collection_page_size"
|
||||
default = 50
|
||||
verbose_name = "Federation collection page size"
|
||||
help_text = "How many items to display in ActivityPub collections."
|
||||
field_kwargs = {"required": False}
|
||||
|
||||
|
||||
@global_preferences_registry.register
|
||||
class ActorFetchDelay(types.IntPreference):
|
||||
section = federation
|
||||
name = "actor_fetch_delay"
|
||||
default = 60 * 12
|
||||
verbose_name = "Federation actor fetch delay"
|
||||
help_text = (
|
||||
"How many minutes to wait before refetching actors on "
|
||||
"request authentication."
|
||||
)
|
||||
field_kwargs = {"required": False}
|
||||
|
||||
|
||||
@global_preferences_registry.register
|
||||
class PublicIndex(types.BooleanPreference):
|
||||
show_in_api = True
|
||||
section = federation
|
||||
name = "public_index"
|
||||
default = True
|
||||
verbose_name = "Enable public index"
|
||||
help_text = "If this is enabled, public channels and libraries will be crawlable by other pods and bots"
|
||||
Loading…
Add table
Add a link
Reference in a new issue