1
0
mirror of https://github.com/bitwarden/server synced 2026-02-20 19:33:32 +00:00

Enhance seeder allowing for a user-defined password (#7021)

This commit is contained in:
Mick Letofsky
2026-02-18 06:48:05 +01:00
committed by GitHub
parent 3ed9be1384
commit 81120bd24e
14 changed files with 78 additions and 85 deletions

View File

@@ -113,7 +113,7 @@ public class Program
var stopwatch = Stopwatch.StartNew();
Console.WriteLine($"Seeding organization from preset '{args.Preset}'...");
var result = recipe.Seed(args.Preset!);
var result = recipe.Seed(args.Preset!, args.Password);
stopwatch.Stop();
PrintSeedResult(result, stopwatch.Elapsed);