mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -08:00
reply thresholds
This commit is contained in:
parent
b621a9072f
commit
ad44a4dbc2
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ class SettingsForm(FlaskForm):
|
||||||
ignore_bots = BooleanField(_l('Hide posts by bots'))
|
ignore_bots = BooleanField(_l('Hide posts by bots'))
|
||||||
nsfw = BooleanField(_l('Show NSFW posts'))
|
nsfw = BooleanField(_l('Show NSFW posts'))
|
||||||
nsfl = BooleanField(_l('Show NSFL posts'))
|
nsfl = BooleanField(_l('Show NSFL posts'))
|
||||||
reply_collapse_threshold = IntegerField(_l('Reply collapse threshold'))
|
reply_collapse_threshold = IntegerField(_l('Reply collapse threshold'), validators=[Optional()])
|
||||||
reply_hide_threshold = IntegerField(_l('Reply hide threshold'))
|
reply_hide_threshold = IntegerField(_l('Reply hide threshold'), validators=[Optional()])
|
||||||
markdown_editor = BooleanField(_l('Use markdown editor GUI when writing'))
|
markdown_editor = BooleanField(_l('Use markdown editor GUI when writing'))
|
||||||
searchable = BooleanField(_l('Show profile in user list'))
|
searchable = BooleanField(_l('Show profile in user list'))
|
||||||
indexable = BooleanField(_l('My posts appear in search results'))
|
indexable = BooleanField(_l('My posts appear in search results'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue