You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Some controller/component actionthis.ajax.request('/some-url',{namespace: '/'});// Expected: GET 'https://my-awesome-app.com/api/v1/some-url'// Result: GET 'https://my-awesome-app.com/api/v1/some-url'this.ajax.request('/some-url',{namespace: ''});// Expected: GET 'https://my-awesome-app.com/some-url'// Result: GET 'https://my-awesome-app.com/api/v1/some-url'
Is there any reason for not using Ember.isNone check?
Allow host and namespace be empty strings?
Is there any reason for not using Ember.isNone check?