2020-10-31 21:56:02 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
import Section from 'salix/components/section';
|
|
|
|
|
|
|
|
export default class Controller extends Section {
|
2020-11-12 22:20:25 +00:00
|
|
|
onTestConection() {
|
|
|
|
this.$http.get(`LdapConfigs/test`)
|
|
|
|
.then(() => this.vnApp.showSuccess(this.$t('LDAP connection established!')));
|
2020-10-31 21:56:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.component('vnAccountLdap', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
|
|
|
});
|