feat(cli): add fix-username command to make all usernames lowercase (#2366)

* feat(cli): add fix-username command to make all usernames lowercase

* fix: add missing command
This commit is contained in:
Meier Lukas
2025-02-18 22:02:42 +01:00
committed by GitHub
parent 7705bc44ae
commit 8b7caf1d7d
2 changed files with 38 additions and 1 deletions

View File

@@ -1,8 +1,9 @@
import { run } from "@drizzle-team/brocli";
import { fixUsernames } from "./commands/fix-usernames";
import { resetPassword } from "./commands/reset-password";
const commands = [resetPassword];
const commands = [resetPassword, fixUsernames];
void run(commands, {
name: "homarr-cli",