30535eb8f5
no issue <!-- Leave the line below if you'd like GitHub Copilot to generate a summary from your commit --> copilot:summary
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
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;
|
|
}
|