cms/app-client/app/models/discourse.js
author ymh <ymh.work@gmail.com>
Tue, 13 Dec 2016 23:30:54 +0100
changeset 473 1b8b29c0e95c
parent 465 9df336529b2f
permissions -rw-r--r--
Added tag 0.0.13 for changeset 8b1e24e0ef70
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
465
9df336529b2f make filter and theme visualisatiion change on filter modification
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
import DS from 'ember-data';
9df336529b2f make filter and theme visualisatiion change on filter modification
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
9df336529b2f make filter and theme visualisatiion change on filter modification
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
export default DS.Model.extend({
9df336529b2f make filter and theme visualisatiion change on filter modification
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
  label: DS.attr('string'),
9df336529b2f make filter and theme visualisatiion change on filter modification
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
  count: DS.attr('number')
9df336529b2f make filter and theme visualisatiion change on filter modification
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
});