Skip to content
Snippets Groups Projects
Commit 67b8fb7d authored by Rodrigo Nascimento's avatar Rodrigo Nascimento
Browse files

Mask LDAP_Domain_Search_Password; Closes #737

parent 4da99981
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ Meteor.startup ->
@add 'LDAP_Use_Custom_Domain_Search', false, { type: 'boolean' , enableQuery: enableQuery }
@add 'LDAP_Custom_Domain_Search', '', { type: 'string' , enableQuery: customBindSearchEnabledQuery }
@add 'LDAP_Domain_Search_User', '', { type: 'string', enableQuery: customBindSearchDisabledQuery }
@add 'LDAP_Domain_Search_Password', '', { type: 'string', enableQuery: customBindSearchDisabledQuery }
@add 'LDAP_Domain_Search_Password', '', { type: 'password', enableQuery: customBindSearchDisabledQuery }
@add 'LDAP_Restricted_User_Groups', '', { type: 'string', enableQuery: customBindSearchDisabledQuery }
@add 'LDAP_Domain_Search_User_ID', 'sAMAccountName', { type: 'string', enableQuery: customBindSearchDisabledQuery }
@add 'LDAP_Domain_Search_Object_Class', 'user', { type: 'string', enableQuery: customBindSearchDisabledQuery }
......
......@@ -53,6 +53,10 @@
{{/if}}
{{/if}}
{{#if $eq type 'password'}}
<input class="input-monitor" type="password" name="{{_id}}" value="{{value}}" placeholder="{{placeholder}}" {{isDisabled}}/>
{{/if}}
{{#if $eq type 'int'}}
<input class="input-monitor" type="number" name="{{_id}}" value="{{value}}" placeholder="{{placeholder}}" {{isDisabled}}/>
{{/if}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment