2019-11-08 13:07:47 +03:00
|
|
|
/* eslint-disable camelcase */
|
|
|
|
import ApplicationSerializer from 'ghost-admin/serializers/application';
|
|
|
|
|
2022-02-02 21:35:18 +03:00
|
|
|
export default class EmailSerializer extends ApplicationSerializer {
|
|
|
|
attrs = {
|
2019-11-08 13:07:47 +03:00
|
|
|
createdAtUTC: {key: 'created_at'},
|
|
|
|
updatedAtUTC: {key: 'updated_at'},
|
|
|
|
submittedAtUTC: {key: 'submitted_at'}
|
2022-02-10 13:41:36 +03:00
|
|
|
};
|
2022-02-02 21:35:18 +03:00
|
|
|
}
|