client/src/store/sessionRecord.js
author ymh <ymh.work@gmail.com>
Tue, 28 Aug 2018 16:57:31 +0200
changeset 148 fcce52a159bc
parent 132 906a6c7c7943
child 168 ea92f4fe783d
permissions -rw-r--r--
remove react-bootstrap - add a login dropdown component - add a group login component - remove reference to react-bootstrap

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

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

  title: '',
  description: '',

  date: '',

  group: null,
  protocol: '',

  action: ActionEnum.NONE,

}, 'Session');