mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 01:45:44 +03:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
import ApplicationSerializer from './application';
|
|
|
|
export default class StructuredAttributes extends ApplicationSerializer {
|
|
normalize(typeHash, hash) {
|
|
return super.normalize(typeHash, { Raw: hash });
|
|
}
|
|
}
|