2018-10-18 02:18:29 +03:00
|
|
|
import ApplicationSerializer from './application';
|
|
|
|
|
2022-02-02 21:35:18 +03:00
|
|
|
export default class ActionSerializer extends ApplicationSerializer {
|
|
|
|
attrs = {
|
2018-10-18 02:18:29 +03:00
|
|
|
lastTriggeredAtUTC: {key: 'last_triggered_at'},
|
|
|
|
createdAtUTC: {key: 'created_at'},
|
|
|
|
updatedAtUTC: {key: 'updated_at'}
|
2022-02-10 13:41:36 +03:00
|
|
|
};
|
2022-02-02 21:35:18 +03:00
|
|
|
}
|