Hey!
I'm
updating EmberFire as we speak to give you access to the Firebase app instance. This will allow you to access the storage API in a convenient manner:
firebaseApp: Ember.inject.service(),
someMethod() {
const storage = this.get('firebaseApp').storage();
// go nuts
}
I do not have plans to do other more specific storage integrations at this time. Ember Data is not set up to do file storage specifically, but you could store the Firebase Storage path in your Ember Data model and use the `firebaseApp` method above to save/retrieve those files.
Happy coding,
Tim