1
0
mirror of https://github.com/bitwarden/server synced 2026-03-02 11:21:31 +00:00

chore(flags): [PM-30613] Remove unused mjml-based-email-templates feature flag

* Removed old method.

* Removed IFeatureService.

* Fixed test.

* Renamed the v2 endpoint.

* Removed old Handlebars templates.

* Renamed v2 templates to remove v2 suffix.
This commit is contained in:
Todd Martin
2026-02-02 11:36:39 -05:00
committed by GitHub
parent d4de03a762
commit a27eda7df6
12 changed files with 715 additions and 807 deletions

View File

@@ -270,10 +270,8 @@ public class SendEmailOtpRequestValidatorTests
// Arrange
var otpTokenProvider = Substitute.For<IOtpTokenProvider<DefaultOtpTokenProviderOptions>>();
var mailService = Substitute.For<IMailService>();
var featureService = Substitute.For<IFeatureService>();
// Act
var validator = new SendEmailOtpRequestValidator(featureService, otpTokenProvider, mailService);
var validator = new SendEmailOtpRequestValidator(otpTokenProvider, mailService);
// Assert
Assert.NotNull(validator);