I have an Ember application (built with Ember-CLI). On the backend, I have a Rails application that processes requests. Lets say my API has the following routes:
/model - returns a list of models
/model/1 - returns the model
/model/1/download - returns a file
How to get the Ember application to start a file download (using the /download path) and how can I create a link to download files from an Ember application?
source share