Allow to set an alternative endpoint for auth

This commit is contained in:
Piotr Sarnacki 2016-01-11 14:26:05 +01:00
parent cebaa0e8d1
commit bbf0b7459f
2 changed files with 9 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export default Ember.Service.extend({
},
endpoint: function() {
return config.apiEndpoint;
return config.authEndpoint || config.apiEndpoint;
}.property(),
signOut: function() {

View File

@ -61,6 +61,14 @@ module.exports = function(environment) {
terms: ENV.billingEndpoint + "/pages/terms"
};
}
if (process.env.API_ENDPOINT) {
ENV.apiEndpoint = process.env.API_ENDPOINT;
}
if (process.env.AUTH_ENDPOINT) {
ENV.authEndpoint = process.env.AUTH_ENDPOINT;
}
}
if (environment === 'development') {