blob: c650751cda1eff16af22486d78e85941981e0870 (
plain)
1
2
3
4
5
6
7
8
9
|
import DS from 'ember-data';
export default DS.Model.extend({
heading: DS.attr('string'),
description: DS.attr('string'),
url: DS.attr('string'),
imageUrl: DS.attr('string'),
author: DS.belongsTo('user')
});
|