Ghost/ghost/admin/app/models/post-revision.js

10 lines
257 B
JavaScript
Raw Normal View History

import Model, {attr, belongsTo} from '@ember-data/model';
export default class PostRevisionModel extends Model {
@belongsTo('post') post;
@attr('string') lexical;
@attr('string') title;
@attr('moment-utc') createdAt;
@belongsTo('user') author;
}