mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-25 08:38:59 +00:00
change fake_mentions start setting to middle
This commit is contained in:
parent
3ebcb589ce
commit
1d3b06cb0b
2 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `bots` (
|
||||||
`post_frequency` SMALLINT UNSIGNED DEFAULT 30,
|
`post_frequency` SMALLINT UNSIGNED DEFAULT 30,
|
||||||
`content_warning` VARCHAR(128),
|
`content_warning` VARCHAR(128),
|
||||||
`length` SMALLINT UNSIGNED DEFAULT 500,
|
`length` SMALLINT UNSIGNED DEFAULT 500,
|
||||||
`fake_mentions` ENUM('always', 'start', 'never') DEFAULT 'start',
|
`fake_mentions` ENUM('always', 'middle', 'never') DEFAULT 'middle',
|
||||||
`fake_mentions_full` BOOLEAN DEFAULT 0,
|
`fake_mentions_full` BOOLEAN DEFAULT 0,
|
||||||
`post_privacy` ENUM('public', 'unlisted', 'followers_only') DEFAULT 'unlisted',
|
`post_privacy` ENUM('public', 'unlisted', 'followers_only') DEFAULT 'unlisted',
|
||||||
`learn_from_cw` BOOLEAN DEFAULT 0,
|
`learn_from_cw` BOOLEAN DEFAULT 0,
|
||||||
|
|
|
@ -33,8 +33,8 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<label for="fake-mentions" class="large">Fake mentions</label>
|
<label for="fake-mentions" class="large">Fake mentions</label>
|
||||||
<select name="fake-mentions">
|
<select name="fake-mentions">
|
||||||
<option value="full">At any time</option>
|
<option value="always">At any time</option>
|
||||||
<option value="start" default>Only at the start of posts</option>
|
<option value="middle" default>Only in the middle of posts</option>
|
||||||
<option value="never">Never</option>
|
<option value="never">Never</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue