mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
|
import ApplicationSerializer from './application';
|
||
|
|
||
|
export default ApplicationSerializer.extend({
|
||
|
attrs: {
|
||
|
lastTriggeredAtUTC: {key: 'last_triggered_at'},
|
||
|
createdAtUTC: {key: 'created_at'},
|
||
|
updatedAtUTC: {key: 'updated_at'}
|
||
|
}
|
||
|
});
|