aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/api.js
blob: 1ee2440fe16cde17038fe72693d729fbeaeb7084 (plain) (blame)
1
2
3
4
5
6
7
8
9
// TODO: use real server instead
const workspaces = [
  { id: 'workspace-1', name: 'Private' },
  { id: 'workspace-2', name: 'Office' },
];

export default {
  getUserWorkspaces: () => Promise.resolve(workspaces),
};