mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
15 lines
350 B
JavaScript
15 lines
350 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import ApplicationSerializer from './application';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
export default class StructuredAttributes extends ApplicationSerializer {
|
|
normalize(typeHash, hash) {
|
|
return super.normalize(typeHash, { Raw: hash });
|
|
}
|
|
}
|