Merge branch 'master' into clostridium
* master: Refresh token
This commit is contained in:
commit
418b294634
2 changed files with 5 additions and 1 deletions
|
@ -5,7 +5,7 @@ export default Ember.Controller.extend({
|
||||||
authenticate: function() {
|
authenticate: function() {
|
||||||
let credentials = this.getProperties('identification', 'password');
|
let credentials = this.getProperties('identification', 'password');
|
||||||
let session = this.get('session');
|
let session = this.get('session');
|
||||||
let authenticator = 'simple-auth-authenticator:token';
|
let authenticator = 'simple-auth-authenticator:jwt';
|
||||||
|
|
||||||
// Manually clean up because there might not be a transition
|
// Manually clean up because there might not be a transition
|
||||||
this.get('flashMessages').clearMessages();
|
this.get('flashMessages').clearMessages();
|
||||||
|
|
|
@ -27,6 +27,9 @@ module.exports = function(environment) {
|
||||||
tokenPropertyName: 'token',
|
tokenPropertyName: 'token',
|
||||||
authorizationPrefix: 'Bearer ',
|
authorizationPrefix: 'Bearer ',
|
||||||
authorizationHeaderName: 'Authorization',
|
authorizationHeaderName: 'Authorization',
|
||||||
|
refreshAccessTokens: true,
|
||||||
|
timeFactor: 1000,
|
||||||
|
refreshLeeway: 300,
|
||||||
},
|
},
|
||||||
contentSecurityPolicy: {
|
contentSecurityPolicy: {
|
||||||
'default-src': "'none'",
|
'default-src': "'none'",
|
||||||
|
@ -61,6 +64,7 @@ module.exports = function(environment) {
|
||||||
|
|
||||||
ENV['simple-auth']['crossOriginWhitelist'] = [apiURL];
|
ENV['simple-auth']['crossOriginWhitelist'] = [apiURL];
|
||||||
ENV['simple-auth-token']['serverTokenEndpoint'] = apiURL + '/api/authenticate';
|
ENV['simple-auth-token']['serverTokenEndpoint'] = apiURL + '/api/authenticate';
|
||||||
|
ENV['simple-auth-token']['serverTokenRefreshEndpoint'] = apiURL + '/api/refresh';
|
||||||
ENV.apiURL = apiURL;
|
ENV.apiURL = apiURL;
|
||||||
ENV.contentSecurityPolicy['connect-src'] = "'self' " + apiURL;
|
ENV.contentSecurityPolicy['connect-src'] = "'self' " + apiURL;
|
||||||
|
|
||||||
|
|
Reference in a new issue