aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/workspaces/index.js')
-rw-r--r--src/features/workspaces/index.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/features/workspaces/index.js b/src/features/workspaces/index.js
index 560b732ab..3db6de5b2 100644
--- a/src/features/workspaces/index.js
+++ b/src/features/workspaces/index.js
@@ -4,9 +4,6 @@ import { resetApiRequests } from './api';
4 4
5const debug = require('debug')('Ferdi:feature:workspaces'); 5const debug = require('debug')('Ferdi:feature:workspaces');
6 6
7export const GA_CATEGORY_WORKSPACES = 'Workspaces';
8export const DEFAULT_SETTING_KEEP_ALL_WORKSPACES_LOADED = false;
9
10export const workspaceStore = new WorkspacesStore(); 7export const workspaceStore = new WorkspacesStore();
11 8
12export default function initWorkspaces(stores, actions) { 9export default function initWorkspaces(stores, actions) {
@@ -31,8 +28,3 @@ export default function initWorkspaces(stores, actions) {
31 }, 28 },
32 ); 29 );
33} 30}
34
35export const WORKSPACES_ROUTES = {
36 ROOT: '/settings/workspaces',
37 EDIT: '/settings/workspaces/:action/:id',
38};