client/src/store/sessionRecord.js
author ymh <ymh.work@gmail.com>
Thu, 03 Aug 2017 19:11:06 +0200
changeset 135 b5aafa462956
parent 132 906a6c7c7943
child 168 ea92f4fe783d
permissions -rw-r--r--
Cleaning session form. The group and protocol are no longer editable. Removing cruft

import Immutable from 'immutable';
import { ActionEnum } from '../constants';

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

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

}, 'Session');