Merge branch 'master' into clostridium
* master: Lint
This commit is contained in:
commit
d93f4a3152
1 changed files with 2 additions and 1 deletions
|
@ -1,13 +1,14 @@
|
|||
import OAuth2PasswordGrant from 'ember-simple-auth/authenticators/oauth2-password-grant';
|
||||
import config from '../config/environment';
|
||||
import parseBase64 from '../utils/parse-base64';
|
||||
import Ember from 'ember';
|
||||
const { RSVP: { Promise }, isEmpty, run, Logger: { warn } } = Ember;
|
||||
|
||||
export default OAuth2PasswordGrant.extend({
|
||||
serverTokenEndpoint: `${config.apiURL}/api/authenticate`,
|
||||
serverTokenRefreshEndpoint: `${config.apiURL}/api/refresh`,
|
||||
|
||||
authenticate: function(identification, password, scope = []) {
|
||||
authenticate: function(identification, password) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const data = { username: identification, password };
|
||||
const serverTokenEndpoint = this.get('serverTokenEndpoint');
|
||||
|
|
Reference in a new issue