Refresh token
This commit is contained in:
parent
4699e26fa0
commit
97db4e4662
2 changed files with 5 additions and 1 deletions
|
@ -5,7 +5,7 @@ export default Ember.Controller.extend({
|
|||
authenticate: function() {
|
||||
let credentials = this.getProperties('identification', 'password');
|
||||
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
|
||||
this.get('flashMessages').clearMessages();
|
||||
|
|
|
@ -27,6 +27,9 @@ module.exports = function(environment) {
|
|||
tokenPropertyName: 'token',
|
||||
authorizationPrefix: 'Bearer ',
|
||||
authorizationHeaderName: 'Authorization',
|
||||
refreshAccessTokens: true,
|
||||
timeFactor: 1000,
|
||||
refreshLeeway: 300,
|
||||
},
|
||||
contentSecurityPolicy: {
|
||||
'default-src': "'none'",
|
||||
|
@ -61,6 +64,7 @@ module.exports = function(environment) {
|
|||
|
||||
ENV['simple-auth']['crossOriginWhitelist'] = [apiURL];
|
||||
ENV['simple-auth-token']['serverTokenEndpoint'] = apiURL + '/api/authenticate';
|
||||
ENV['simple-auth-token']['serverTokenRefreshEndpoint'] = apiURL + '/api/refresh';
|
||||
ENV.apiURL = apiURL;
|
||||
ENV.contentSecurityPolicy['connect-src'] = "'self' " + apiURL;
|
||||
|
||||
|
|
Reference in a new issue