feat(tasker): localize NODE.DC workspace seed

This commit is contained in:
DCCONSTRUCTIONS
2026-05-10 19:59:03 +03:00
parent e49840341b
commit d55d182648
30 changed files with 196 additions and 123 deletions
@@ -521,12 +521,12 @@ def workspace_seed(workspace_id: uuid.UUID) -> None:
# Create a bot user for creating all the workspace data
bot_user = User.objects.create(
username=f"bot_user_{workspace.id}",
display_name="Plane",
first_name="Plane",
display_name="NODE.DC",
first_name="NODE.DC",
last_name="",
is_bot=True,
bot_type=BotTypeEnum.WORKSPACE_SEED,
email=f"bot_user_{workspace.id}@plane.so",
email=f"bot_user_{workspace.id}@nodedc.local",
password=make_password(uuid.uuid4().hex),
is_password_autoset=True,
)