94 lines
2.7 KiB
HTML
94 lines
2.7 KiB
HTML
|
<vn-watcher
|
||
|
vn-id="watcher"
|
||
|
url="LdapConfigs"
|
||
|
data="$ctrl.config"
|
||
|
id-value="1"
|
||
|
form="form">
|
||
|
</vn-watcher>
|
||
|
<form
|
||
|
name="form"
|
||
|
ng-submit="watcher.submit()"
|
||
|
class="vn-w-md">
|
||
|
<vn-card class="vn-pa-lg">
|
||
|
<vn-vertical>
|
||
|
<vn-textfield
|
||
|
label="Host"
|
||
|
ng-model="$ctrl.config.host"
|
||
|
rule="LdapConfig"
|
||
|
vn-focus>
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
label="RDN"
|
||
|
ng-model="$ctrl.config.rdn"
|
||
|
rule="LdapConfig">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
label="Password"
|
||
|
ng-model="$ctrl.config.password"
|
||
|
info="Password should be base64 encoded"
|
||
|
type="password"
|
||
|
rule="LdapConfig">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
label="Base DN"
|
||
|
ng-model="$ctrl.config.baseDn"
|
||
|
rule="LdapConfig">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
label="Filter"
|
||
|
ng-model="$ctrl.config.filter"
|
||
|
rule="LdapConfig">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
label="Group DN"
|
||
|
ng-model="$ctrl.config.groupDn"
|
||
|
rule="LdapConfig">
|
||
|
</vn-textfield>
|
||
|
</vn-vertical>
|
||
|
</vn-card>
|
||
|
<vn-button-bar>
|
||
|
<vn-button
|
||
|
label="Undo changes"
|
||
|
ng-if="watcher.dataChanged()"
|
||
|
ng-click="watcher.loadOriginalData()">
|
||
|
</vn-button>
|
||
|
<vn-button
|
||
|
label="Synchronize now"
|
||
|
ng-if="watcher.hasData"
|
||
|
ng-click="$ctrl.onSynchronizeAll()">
|
||
|
</vn-button>
|
||
|
<vn-button
|
||
|
label="Synchronize user"
|
||
|
ng-if="watcher.hasData"
|
||
|
ng-click="syncUser.show()">
|
||
|
</vn-button>
|
||
|
</vn-button-bar>
|
||
|
<vn-submit
|
||
|
icon="save"
|
||
|
vn-tooltip="Save"
|
||
|
class="round"
|
||
|
fixed-bottom-right>
|
||
|
</vn-submit>
|
||
|
</form>
|
||
|
<vn-dialog
|
||
|
vn-id="syncUser"
|
||
|
on-accept="$ctrl.onUserSync()"
|
||
|
on-close="$ctrl.onPassClose()">
|
||
|
<tpl-body>
|
||
|
<vn-textfield
|
||
|
label="Username"
|
||
|
ng-model="$ctrl.syncUser">
|
||
|
</vn-textfield>
|
||
|
<vn-textfield
|
||
|
label="Password"
|
||
|
ng-model="$ctrl.syncPassword"
|
||
|
type="password"
|
||
|
info="If password is not specified, just user attributes are synchronized">
|
||
|
</vn-textfield>
|
||
|
</tpl-body>
|
||
|
<tpl-buttons>
|
||
|
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
|
||
|
<button response="accept" translate>Synchronize</button>
|
||
|
</tpl-buttons>
|
||
|
</vn-dialog>
|