Skip to content

Commit 8e782d8

Browse files
authored
Merge branch 'main' into jmccannon/ac/pm-38927-org-user-role-validation
2 parents cdcdb5c + 2b9945a commit 8e782d8

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

test/SeederApi.IntegrationTest/Pipeline/RecipeOrchestratorIntegrationTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,16 @@ private void SeedExistingUser(string email)
116116

117117
private RecipeOrchestrator NewOrchestrator(IManglerService mangler)
118118
{
119-
// Mapper + PasswordHasher are not exercised by the pre-flight guard,
119+
// Mapper + LicensingService are not exercised by the pre-flight guard,
120120
// which fires before BulkCommitter or any AutoMapper usage. Null-forgive
121121
// them; if the guard ever stops being the first thing in Execute, these
122122
// tests will fail loudly.
123123
var deps = new SeederDependencies(
124124
_db,
125125
null!,
126126
new PasswordHasher<User>(),
127-
mangler);
127+
mangler,
128+
null!);
128129
return new RecipeOrchestrator(deps);
129130
}
130131
}

util/SeederUtility/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dotnet build
1313
dotnet run -- <command> [options]
1414
```
1515

16-
**Login Credentials:** All seeded users use password `asdfasdfasdf` by default (override with `--password`). For org presets the owner email is `owner@<domain>`; for individual presets the email comes from the preset's `user.email` field. For the `individual` command with `--first-name`/`--last-name`, the email is `{first}.{last}@individual.example`; without names, a random Faker identity is generated and mangling is auto-enabled.
16+
**Login Credentials:** All seeded users use password `asdfasdfasdf` by default (override with `--password`). For org presets the owner email is `owner@<domain>` (override with `--owner-email`); for individual presets the email comes from the preset's `user.email` field. For the `individual` command with `--first-name`/`--last-name`, the email is `{first}.{last}@individual.example`; without names, a random Faker identity is generated and mangling is auto-enabled.
1717

1818
## Commands
1919

0 commit comments

Comments
 (0)