Removed tags settings only available in Insiders from schema

This commit is contained in:
squidfunk 2023-09-10 16:32:06 +02:00
parent e3d5fd2eb3
commit 2ba35383e2
No known key found for this signature in database
GPG Key ID: 5ED40BC4F9C436DF
2 changed files with 0 additions and 12 deletions

View File

@ -36,9 +36,3 @@ class TagsConfig(Config):
# Settings for tags
tags = Type(bool, default = True)
tags_file = Optional(Type(str))
tags_extra_files = Type(dict, default = {})
tags_slugify = Type((type(slugify), partial), default = slugify)
tags_slugify_separator = Type(str, default = "-")
tags_compare = Optional(Type(type(casefold)))
tags_compare_reverse = Type(bool, default = False)
tags_allowed = Type(list, default = [])

View File

@ -36,9 +36,3 @@ class TagsConfig(Config):
# Settings for tags
tags = Type(bool, default = True)
tags_file = Optional(Type(str))
tags_extra_files = Type(dict, default = {})
tags_slugify = Type((type(slugify), partial), default = slugify)
tags_slugify_separator = Type(str, default = "-")
tags_compare = Optional(Type(type(casefold)))
tags_compare_reverse = Type(bool, default = False)
tags_allowed = Type(list, default = [])