mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
|
/* eslint-disable camelcase */
|
||
|
import ApplicationSerializer from 'ghost-admin/serializers/application';
|
||
|
|
||
|
export default ApplicationSerializer.extend({
|
||
|
attrs: {
|
||
|
createdAtUTC: {key: 'created_at'}
|
||
|
}
|
||
|
});
|