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