mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +01:00
Rename third party handler files to match their declarations
This commit is contained in:
parent
cf6dbb26f3
commit
7f1e4ce0db
17
js/app.js
17
js/app.js
@ -6,9 +6,7 @@ import React from 'react';
|
||||
import { Router, Redirect } from 'react-router';
|
||||
import history from './history';
|
||||
|
||||
/* eslint-disable */
|
||||
import fetch from 'isomorphic-fetch';
|
||||
/* eslint-enable */
|
||||
|
||||
import ApiUrls from './constants/api_urls';
|
||||
|
||||
@ -23,15 +21,13 @@ import { getSubdomain } from './utils/general_utils';
|
||||
|
||||
import EventActions from './actions/event_actions';
|
||||
|
||||
/* eslint-disable */
|
||||
// You can comment out the modules you don't need
|
||||
// import DebugHandler from './third_party/debug';
|
||||
import GoogleAnalyticsHandler from './third_party/ga';
|
||||
import RavenHandler from './third_party/raven';
|
||||
import IntercomHandler from './third_party/intercom';
|
||||
import NotificationsHandler from './third_party/notifications';
|
||||
import FacebookHandler from './third_party/facebook';
|
||||
/* eslint-enable */
|
||||
// import DebugHandler from './third_party/debug_handler';
|
||||
import FacebookHandler from './third_party/facebook_handler';
|
||||
import GoogleAnalyticsHandler from './third_party/ga_handler';
|
||||
import IntercomHandler from './third_party/intercom_handler';
|
||||
import NotificationsHandler from './third_party/notifications_handler';
|
||||
import RavenHandler from './third_party/raven_handler';
|
||||
|
||||
initLogging();
|
||||
|
||||
@ -105,4 +101,3 @@ class AppGateway {
|
||||
|
||||
let ag = new AppGateway();
|
||||
ag.start();
|
||||
|
||||
|
@ -4,7 +4,6 @@ import { altThirdParty } from '../alt';
|
||||
import EventActions from '../actions/event_actions';
|
||||
|
||||
|
||||
|
||||
class DebugHandler {
|
||||
constructor() {
|
||||
let symbols = [];
|
Loading…
Reference in New Issue
Block a user