Skip to content

Instantly share code, notes, and snippets.

@bleonard
Created December 24, 2016 17:15
Show Gist options
  • Save bleonard/8594c5c405ddeaba7d6cf66ffea53431 to your computer and use it in GitHub Desktop.
Save bleonard/8594c5c405ddeaba7d6cf66ffea53431 to your computer and use it in GitHub Desktop.
Model.prototype.getApiHost = function() {
switch(this.data.name) {
case 'test':
return 'http://localhost:3001';
case 'debug':
return 'http://localhost:3000';
case 'staging':
return 'https://someday.herokuapp.com';
default:
throw("Unknown Environment.getApiHost: " + this.data.name);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment