aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js4
-rw-r--r--src/stores/RecipesStore.js2
-rw-r--r--src/stores/RequestStore.js2
-rw-r--r--src/stores/ServicesStore.js2
-rw-r--r--src/stores/SettingsStore.js2
-rw-r--r--src/stores/UserStore.js2
6 files changed, 7 insertions, 7 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 61b63d52e..5bae6e8d4 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -23,7 +23,7 @@ import { getLocale } from '../helpers/i18n-helpers';
23import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js'; 23import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js';
24import { isValidExternalURL } from '../helpers/url-helpers'; 24import { isValidExternalURL } from '../helpers/url-helpers';
25 25
26const debug = require('debug')('Franz:AppStore'); 26const debug = require('debug')('Ferdi:AppStore');
27 27
28const { app, systemPreferences, screen } = remote; 28const { app, systemPreferences, screen } = remote;
29 29
@@ -31,7 +31,7 @@ const mainWindow = remote.getCurrentWindow();
31 31
32const defaultLocale = DEFAULT_APP_SETTINGS.locale; 32const defaultLocale = DEFAULT_APP_SETTINGS.locale;
33const autoLauncher = new AutoLaunch({ 33const autoLauncher = new AutoLaunch({
34 name: 'Franz', 34 name: 'Ferdi',
35}); 35});
36 36
37export default class AppStore extends Store { 37export default class AppStore extends Store {
diff --git a/src/stores/RecipesStore.js b/src/stores/RecipesStore.js
index d51192078..7f91049df 100644
--- a/src/stores/RecipesStore.js
+++ b/src/stores/RecipesStore.js
@@ -5,7 +5,7 @@ import CachedRequest from './lib/CachedRequest';
5import Request from './lib/Request'; 5import Request from './lib/Request';
6import { matchRoute } from '../helpers/routing-helpers'; 6import { matchRoute } from '../helpers/routing-helpers';
7 7
8const debug = require('debug')('Franz:RecipeStore'); 8const debug = require('debug')('Ferdi:RecipeStore');
9 9
10export default class RecipesStore extends Store { 10export default class RecipesStore extends Store {
11 @observable allRecipesRequest = new CachedRequest(this.api.recipes, 'all'); 11 @observable allRecipesRequest = new CachedRequest(this.api.recipes, 'all');
diff --git a/src/stores/RequestStore.js b/src/stores/RequestStore.js
index 9254e3223..2587d4eef 100644
--- a/src/stores/RequestStore.js
+++ b/src/stores/RequestStore.js
@@ -3,7 +3,7 @@ import ms from 'ms';
3 3
4import Store from './lib/Store'; 4import Store from './lib/Store';
5 5
6const debug = require('debug')('Franz:RequestsStore'); 6const debug = require('debug')('Ferdi:RequestsStore');
7 7
8export default class RequestStore extends Store { 8export default class RequestStore extends Store {
9 @observable userInfoRequest; 9 @observable userInfoRequest;
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 1debf69f6..c02f08201 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -15,7 +15,7 @@ import { workspaceStore } from '../features/workspaces';
15import { serviceLimitStore } from '../features/serviceLimit'; 15import { serviceLimitStore } from '../features/serviceLimit';
16import { RESTRICTION_TYPES } from '../models/Service'; 16import { RESTRICTION_TYPES } from '../models/Service';
17 17
18const debug = require('debug')('Franz:ServiceStore'); 18const debug = require('debug')('Ferdi:ServiceStore');
19 19
20export default class ServicesStore extends Store { 20export default class ServicesStore extends Store {
21 @observable allServicesRequest = new CachedRequest(this.api.services, 'all'); 21 @observable allServicesRequest = new CachedRequest(this.api.services, 'all');
diff --git a/src/stores/SettingsStore.js b/src/stores/SettingsStore.js
index bc01291d8..6c7b586a5 100644
--- a/src/stores/SettingsStore.js
+++ b/src/stores/SettingsStore.js
@@ -13,7 +13,7 @@ import { API } from '../environment';
13import { DEFAULT_APP_SETTINGS, FILE_SYSTEM_SETTINGS_TYPES } from '../config'; 13import { DEFAULT_APP_SETTINGS, FILE_SYSTEM_SETTINGS_TYPES } from '../config';
14import { SPELLCHECKER_LOCALES } from '../i18n/languages'; 14import { SPELLCHECKER_LOCALES } from '../i18n/languages';
15 15
16const debug = require('debug')('Franz:SettingsStore'); 16const debug = require('debug')('Ferdi:SettingsStore');
17 17
18export default class SettingsStore extends Store { 18export default class SettingsStore extends Store {
19 @observable appSettingsRequest = new CachedRequest(this.api.local, 'getAppSettings'); 19 @observable appSettingsRequest = new CachedRequest(this.api.local, 'getAppSettings');
diff --git a/src/stores/UserStore.js b/src/stores/UserStore.js
index b2649e2e8..61b7d4adf 100644
--- a/src/stores/UserStore.js
+++ b/src/stores/UserStore.js
@@ -12,7 +12,7 @@ import { sleep } from '../helpers/async-helpers';
12import { getPlan } from '../helpers/plan-helpers'; 12import { getPlan } from '../helpers/plan-helpers';
13import { PLANS } from '../config'; 13import { PLANS } from '../config';
14 14
15const debug = require('debug')('Franz:UserStore'); 15const debug = require('debug')('Ferdi:UserStore');
16 16
17// TODO: split stores into UserStore and AuthStore 17// TODO: split stores into UserStore and AuthStore
18export default class UserStore extends Store { 18export default class UserStore extends Store {