1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-23 04:21:05 -05:00

fix copy pasta - changePasswordUriSettings

This commit is contained in:
Nick Krantz 2025-05-21 09:34:48 -05:00
parent e2df7755e6
commit bee55d7fd2
No known key found for this signature in database
GPG Key ID: FF670021ABCAB82E

View File

@ -18,13 +18,13 @@ public class ChangePasswordUriController : Controller
IMemoryCache memoryCache, IMemoryCache memoryCache,
IDomainMappingService domainMappingService, IDomainMappingService domainMappingService,
IChangePasswordUriService changePasswordService, IChangePasswordUriService changePasswordService,
ChangePasswordUriSettings iconsSettings, ChangePasswordUriSettings changePasswordUriSettings,
ILogger<ChangePasswordUriController> logger) ILogger<ChangePasswordUriController> logger)
{ {
_memoryCache = memoryCache; _memoryCache = memoryCache;
_domainMappingService = domainMappingService; _domainMappingService = domainMappingService;
_changePasswordService = changePasswordService; _changePasswordService = changePasswordService;
_changePasswordSettings = iconsSettings; _changePasswordSettings = changePasswordUriSettings;
_logger = logger; _logger = logger;
} }