Feature: #108776 - Allow to set user interface language when using CLI to create user
See forge#108776
Description
The CLI command
typo3 backend: now supports the
-- option, or
-l, that sets the desired user interface
language.
vendor/bin/typo3 backend:user:create --language=de
Copied!
User creation using environment variables:
TYPO3_BE_USER_NAME=username \
TYPO3_BE_USER_EMAIL=admin@example.com \
TYPO3_BE_USER_GROUPS=<comma-separated-list-of-group-ids> \
TYPO3_BE_USER_LANGUAGE=de \
TYPO3_BE_USER_ADMIN=0 \
TYPO3_BE_USER_MAINTAINER=0 \
vendor/bin/typo3 backend:user:create --no-interaction
Copied!