9186280ac9
- use model._meta to access the meta object in the delete response - removed unused `_deleteUser` method - move the success/failure method bodies into the main `deleteUser` task to improve readability - added a timeout after calling `_exportDb()` so that the iframe is not removed from the DOM immediately after it's `src` value is set due to a transition away from the member screen
13 lines
510 B
JavaScript
13 lines
510 B
JavaScript
import Model from '@ember-data/model';
|
|
|
|
export default Model.extend({
|
|
// this is a hack that gives us access to meta data in single resource responses
|
|
// allows similar response.get('_meta') as with multi-resource responses but can
|
|
// suffer from race conditions
|
|
// TODO: review once the record links and meta RFC lands
|
|
// https://github.com/emberjs/rfcs/blob/master/text/0332-ember-data-record-links-and-meta.md
|
|
get _meta() {
|
|
return this._internalModel.type.___meta;
|
|
}
|
|
});
|