aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/actions.js
blob: 84de2b011dcd027eea1c2615b19422154cd435df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import PropTypes from 'prop-types';
import Workspace from './models/Workspace';

export default {
  edit: {
    workspace: PropTypes.instanceOf(Workspace).isRequired,
  },
  create: {
    name: PropTypes.string.isRequired,
  },
  delete: {
    workspace: PropTypes.instanceOf(Workspace).isRequired,
  },
  update: {
    workspace: PropTypes.instanceOf(Workspace).isRequired,
  },
};