aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/actions.js
blob: 30866af96a2fd28ddbe4ff547912f0beefcbd55c (plain) (blame)
1
2
3
4
5
6
7
8
import PropTypes from 'prop-types';
import Workspace from './models/Workspace';

export default {
  edit: {
    workspace: PropTypes.instanceOf(Workspace).isRequired,
  },
};