I am working on an Ember application..
Its using Ember.inject.service modules -- and its not resolving the promise - not providing just the string I need from it
I have a service that looks like this
let downloadMethod = this.get('service1')
  .fetch(id)
  .then(res => {
    console.log("res", res.agenda.method.value)
    res.agenda.method.value
 });
console.log("downloadMethod", downloadMethod);
when I try to access this -- the console log for downloadmethod shows a promise -- but inside the then -- res comes out as the string value I need.
how do I get the value out of the "downloadMethod" -- it shows as a promise, instead of a string result?
Do I need to wrap this around an Ember.RSVP.hash?
 
    