change fake_mentions start setting to middle

This commit is contained in:
Lynne Megido 2019-09-09 19:40:22 +10:00
parent 3ebcb589ce
commit 1d3b06cb0b
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `bots` (
`post_frequency` SMALLINT UNSIGNED DEFAULT 30,
`content_warning` VARCHAR(128),
`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,
`post_privacy` ENUM('public', 'unlisted', 'followers_only') DEFAULT 'unlisted',
`learn_from_cw` BOOLEAN DEFAULT 0,

View File

@ -33,8 +33,8 @@
<div class="row">
<label for="fake-mentions" class="large">Fake mentions</label>
<select name="fake-mentions">
<option value="full">At any time</option>
<option value="start" default>Only at the start of posts</option>
<option value="always">At any time</option>
<option value="middle" default>Only in the middle of posts</option>
<option value="never">Never</option>
</select>
</div>