mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2026-01-07 12:41:48 +00:00
13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { JSONAPISerializer } from 'ember-cli-mirage';
|
|
|
|
export default JSONAPISerializer.extend({
|
|
typeKeyForModel(model) {
|
|
return model.modelName;
|
|
},
|
|
});
|