1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-22 12:04:27 -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,
IDomainMappingService domainMappingService,
IChangePasswordUriService changePasswordService,
ChangePasswordUriSettings iconsSettings,
ChangePasswordUriSettings changePasswordUriSettings,
ILogger<ChangePasswordUriController> logger)
{
_memoryCache = memoryCache;
_domainMappingService = domainMappingService;
_changePasswordService = changePasswordService;
_changePasswordSettings = iconsSettings;
_changePasswordSettings = changePasswordUriSettings;
_logger = logger;
}