23 lines
632 B
JavaScript
23 lines
632 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import IdentityAdapter from './base';
|
|
|
|
export default IdentityAdapter.extend({
|
|
buildURL() {
|
|
// first arg is modelName which we're hardcoding in the call to _super.
|
|
const [, ...args] = arguments;
|
|
return this._super('identity/entity/merge', ...args);
|
|
},
|
|
|
|
createRecord(store, type, snapshot) {
|
|
return this._super(...arguments).then(() => {
|
|
// return the `to` id here so we can redirect to it on success
|
|
// (and because ember _loves_ 204s for createRecord)
|
|
return { id: snapshot.attr('toEntityId') };
|
|
});
|
|
},
|
|
});
|