empress-blog
Version:
Fully-functional, SEO friendly static site implementation of a blog system built on Ember.
17 lines (13 loc) • 419 B
JavaScript
import Model, { attr, hasMany } from '@ember-data/model';
export default class TagModel extends Model {
name;
image;
imageMeta;
content;
html;
meta;
// workaround for unstable ember-data relationship id sorting
// see: https://discuss.emberjs.com/t/manual-pagination-in-ember-data-relationships/18087
_postIds;
posts;
}