Skip to content

Commit 2adadc6

Browse files
Merge pull request #45 from strongbox/issues/1840
issue-1840: Added a checkbox for enabling user password encoding option.
2 parents 0bdd4e5 + f22094b commit 2adadc6

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/app/modules/security-management/pages/ldap-management/security-ldap-configuration/security-ldap-configuration.component.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@
9696
authentication.<br>
9797
Examples: <code>uid={{'{'}}0{{'}'}}</code>, <code>uid={{'{'}}0{{'}'}},ou=Admins</code>
9898
</mat-hint>
99+
100+
<div style="height: 30px;"></div>
101+
102+
<div fxLayout="row" fxLayoutGap="30px">
103+
<mat-checkbox formControlName="userPasswordEncoded" color="primary">
104+
User password is base64 encoded?
105+
</mat-checkbox>
106+
</div>
99107
</mat-expansion-panel>
100108

101109
<mat-expansion-panel>

src/app/modules/security-management/pages/ldap-management/security-ldap-configuration/security-ldap-configuration.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export class SecurityLdapConfigurationComponent implements OnInit {
3333
userSearchBase: new FormControl(),
3434
userSearchFilter: new FormControl(),
3535
userDnPatternList: new FormControl([]),
36+
userPasswordEncoded: new FormControl(false),
3637
authorities: new FormGroup({
3738
groupSearchBase: new FormControl(),
3839
groupSearchFilter: new FormControl(),

0 commit comments

Comments
 (0)