Allow user to mark account as group

This commit is contained in:
tusooa 2023-12-27 22:30:19 -05:00
commit 0110fd86c2
No known key found for this signature in database
GPG key ID: 42AEC43D48433C51
6 changed files with 27 additions and 6 deletions

View file

@ -109,9 +109,18 @@
</button>
</div>
<p>
<Checkbox v-model="bot">
{{ $t('settings.bot') }}
</Checkbox>
<label>
{{ $t('settings.actor_type') }}
<Select v-model="actorType">
<option
v-for="option in availableActorTypes"
:key="option"
:value="option"
>
{{ $t('settings.actor_type_' + option) }}
</option>
</Select>
</label>
</p>
<p>
<interface-language-switcher