Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SendOrganizationConfirmationCommand(IMailer mailer, GlobalSettings
private const string _titleThird = "!";

private static string GetConfirmationSubject(string organizationName) =>
$"You Have Been Confirmed To {organizationName}";
$"You can now access items from {organizationName}";
private string GetWebVaultUrl(bool accessSecretsManager) => accessSecretsManager
? globalSettings.BaseServiceUri.VaultWithHashAndSecretManagerProduct
: globalSettings.BaseServiceUri.VaultWithHash;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,6 @@ await sutProvider.GetDependency<IMailer>().DidNotReceive()
}
}

private static string GetSubject(string organizationName) => $"You Have Been Confirmed To {organizationName}";
private static string GetSubject(string organizationName) => $"You can now access items from {organizationName}";

}
Loading