mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-obrand.git
synced 2025-02-14 10:39:15 +00:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
import DS from 'ember-data';
|
|
|
|
export default DS.Model.extend({
|
|
cid: DS.attr('string'),
|
|
pid: DS.attr('string'),
|
|
category: DS.attr(),
|
|
title: DS.attr('string'),
|
|
content: DS.belongsTo('page-content', {embedded: 'always'})
|
|
});
|