From de630dba68453bd96901f5c1c1e8567244acecee Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 16 Nov 2015 18:15:20 -0700 Subject: [PATCH] Lint --- app/authenticators/oauth2.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/authenticators/oauth2.js b/app/authenticators/oauth2.js index 8af289b..7662be1 100644 --- a/app/authenticators/oauth2.js +++ b/app/authenticators/oauth2.js @@ -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');