mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Include admin reset on trial (#1530)
Objective The "Enterprise Trial button" was missing the admin reset feature on press. Add the checkbox to selected features when pressed. Code Changes Add checked property for UseResetPassword
This commit is contained in:
parent
18b597559a
commit
74218d4639
@ -31,6 +31,7 @@
|
||||
document.getElementById('@(nameof(Model.Use2fa))').checked = true;
|
||||
document.getElementById('@(nameof(Model.UseApi))').checked = true;
|
||||
document.getElementById('@(nameof(Model.SelfHost))').checked = true;
|
||||
document.getElementById('@(nameof(Model.UseResetPassword))').checked = true;
|
||||
// Licensing
|
||||
document.getElementById('@(nameof(Model.LicenseKey))').value = '@Model.RandomLicenseKey';
|
||||
document.getElementById('@(nameof(Model.ExpirationDate))').value = '@Model.FourteenDayExpirationDate';
|
||||
|
Loading…
x
Reference in New Issue
Block a user