client/src/store/noteRecord.js
author ymh <ymh.work@gmail.com>
Tue, 25 Jul 2017 19:11:26 +0200
changeset 128 34a75bd8d0b9
parent 124 c77570164050
child 129 d48946d164c6
permissions -rw-r--r--
add filter on session and node list to recover specific objects

import Immutable from 'immutable';

export default Immutable.Record({
  _id: '',
  session: '',

  plain: '',
  raw: {},
  html: '',

  startedAt: '',
  finishedAt: '',

  categories: [],

  marginComment: '',
  deleted: false,
  modified: true
}, 'Note');