mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-27 18:52:14 +03:00
f37d7a3fc7
no issue We can now get post_status and reason in admin for each post_revision object
18 lines
648 B
JavaScript
18 lines
648 B
JavaScript
/* eslint-disable camelcase */
|
|
import ApplicationSerializer from 'ghost-admin/serializers/application';
|
|
import {EmbeddedRecordsMixin} from '@ember-data/serializer/rest';
|
|
|
|
export default class PostRevisionSerializer extends ApplicationSerializer.extend(EmbeddedRecordsMixin) {
|
|
// settings for the EmbeddedRecordsMixin.
|
|
attrs = {
|
|
author: {embedded: 'always'},
|
|
lexical: {key: 'lexical'},
|
|
title: {key: 'title'},
|
|
createdAt: {key: 'created_at'},
|
|
postIdLocal: {key: 'post_id'},
|
|
postStatus: {key: 'post_status'},
|
|
reason: {key: 'reason'},
|
|
featureImage: {key: 'feature_image'}
|
|
};
|
|
}
|