backend phase 15 & frontend phase 8
This commit is contained in:
@@ -21,6 +21,19 @@ public sealed class SeamOptions
|
||||
public CurrencyOptions Currency { get; set; } = new();
|
||||
public BankTransferOptions BankTransfer { get; set; } = new();
|
||||
public ReviewModerationOptions ReviewModeration { get; set; } = new();
|
||||
public LicenseVerificationOptions LicenseVerification { get; set; } = new();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tunes the mock <c>ILicenseVerificationService</c> (b15 partner-center eNamad / MoH establishment-permit
|
||||
/// check). By default every check returns <c>NeedsManualReview</c> so <c>VerifyPartnerCenter</c> records the
|
||||
/// human admin decision. Set <see cref="AutoApprove"/> to have the mock return <c>Valid</c> (test the
|
||||
/// auto-approve path). The real eNamad / MoH registry adapter ignores these knobs.
|
||||
/// </summary>
|
||||
public sealed class LicenseVerificationOptions
|
||||
{
|
||||
/// <summary>When true, permit/eNamad checks auto-approve (return <c>Valid</c>) instead of requiring a manual decision.</summary>
|
||||
public bool AutoApprove { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user