aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-12 09:19:10 +0200
commit828f4bce4ee1d7c53c132f0cce6032c121632015 (patch)
tree732d53bf1419dfd315f96bcb7cc4a43f34d31389 /src/features/workspaces
parentMerge branch 'private-notifications' (diff)
downloadferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.gz
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.tar.zst
ferdium-app-828f4bce4ee1d7c53c132f0cce6032c121632015.zip
Use ferdi namespace on debugger
Diffstat (limited to 'src/features/workspaces')
-rw-r--r--src/features/workspaces/api.js2
-rw-r--r--src/features/workspaces/index.js2
-rw-r--r--src/features/workspaces/store.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/features/workspaces/api.js b/src/features/workspaces/api.js
index b8893363f..30fbd84be 100644
--- a/src/features/workspaces/api.js
+++ b/src/features/workspaces/api.js
@@ -4,7 +4,7 @@ import Request from '../../stores/lib/Request';
4import Workspace from './models/Workspace'; 4import Workspace from './models/Workspace';
5import apiBase from '../../api/apiBase'; 5import apiBase from '../../api/apiBase';
6 6
7const debug = require('debug')('Franz:feature:workspaces:api'); 7const debug = require('debug')('Ferdi:feature:workspaces:api');
8 8
9export const workspaceApi = { 9export const workspaceApi = {
10 getUserWorkspaces: async () => { 10 getUserWorkspaces: async () => {
diff --git a/src/features/workspaces/index.js b/src/features/workspaces/index.js
index ad9023b8b..1947053df 100644
--- a/src/features/workspaces/index.js
+++ b/src/features/workspaces/index.js
@@ -2,7 +2,7 @@ import { reaction } from 'mobx';
2import WorkspacesStore from './store'; 2import WorkspacesStore from './store';
3import { resetApiRequests } from './api'; 3import { resetApiRequests } from './api';
4 4
5const debug = require('debug')('Franz:feature:workspaces'); 5const debug = require('debug')('Ferdi:feature:workspaces');
6 6
7export const GA_CATEGORY_WORKSPACES = 'Workspaces'; 7export const GA_CATEGORY_WORKSPACES = 'Workspaces';
8 8
diff --git a/src/features/workspaces/store.js b/src/features/workspaces/store.js
index bdec530ec..1ad136a13 100644
--- a/src/features/workspaces/store.js
+++ b/src/features/workspaces/store.js
@@ -17,7 +17,7 @@ import { WORKSPACES_ROUTES } from './index';
17import { createReactions } from '../../stores/lib/Reaction'; 17import { createReactions } from '../../stores/lib/Reaction';
18import { createActionBindings } from '../utils/ActionBinding'; 18import { createActionBindings } from '../utils/ActionBinding';
19 19
20const debug = require('debug')('Franz:feature:workspaces:store'); 20const debug = require('debug')('Ferdi:feature:workspaces:store');
21 21
22export default class WorkspacesStore extends FeatureStore { 22export default class WorkspacesStore extends FeatureStore {
23 @observable isFeatureEnabled = true; 23 @observable isFeatureEnabled = true;