mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-26 01:56:06 +00:00
27 lines
707 B
JavaScript
27 lines
707 B
JavaScript
import Ember from 'ember';
|
|
|
|
const { Controller, computed, get, setProperties, inject: { service } } = Ember;
|
|
|
|
export default Controller.extend({
|
|
session: service(),
|
|
|
|
username: computed.alias('name'),
|
|
|
|
password: computed.alias('pass'),
|
|
|
|
errorMessage: '',
|
|
|
|
actions: {
|
|
/**
|
|
* Using the session service, authenticate using the custom ldap authenticator
|
|
*/
|
|
authenticateUser() {
|
|
const { username, password } = this.getProperties(['username', 'password']);
|
|
|
|
get(this, 'session')
|
|
.authenticate('authenticator:custom-ldap', username, password)
|
|
.catch(({ responseText = 'Bad Credentials' }) => setProperties(this, { errorMessage: responseText }));
|
|
}
|
|
}
|
|
});
|