mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-15 20:16:52 +00:00
updates code formart for login controller
This commit is contained in:
parent
70bf499cc4
commit
ea21f86983
@ -1,12 +1,6 @@
|
||||
import Ember from 'ember';
|
||||
|
||||
const {
|
||||
Controller,
|
||||
computed,
|
||||
get,
|
||||
setProperties,
|
||||
inject: { service }
|
||||
} = Ember;
|
||||
const { Controller, computed, get, setProperties, inject: { service } } = Ember;
|
||||
|
||||
export default Controller.extend({
|
||||
session: service(),
|
||||
@ -22,15 +16,11 @@ export default Controller.extend({
|
||||
* Using the session service, authenticate using the custom ldap authenticator
|
||||
*/
|
||||
authenticateUser() {
|
||||
const { username, password } = this.getProperties([
|
||||
'username',
|
||||
'password'
|
||||
]);
|
||||
const { username, password } = this.getProperties(['username', 'password']);
|
||||
|
||||
get(this, 'session')
|
||||
.authenticate('authenticator:custom-ldap', username, password)
|
||||
.catch(({ responseText = 'Bad Credentials' }) =>
|
||||
setProperties(this, { errorMessage: responseText }));
|
||||
.catch(({ responseText = 'Bad Credentials' }) => setProperties(this, { errorMessage: responseText }));
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user