EventIndex: Move the event indexing files into a separate folder.

pull/21833/head
Damir Jelić 2019-11-19 12:52:12 +01:00
parent f776bdcc8b
commit e9df973c82
6 changed files with 8 additions and 8 deletions

View File

@ -19,7 +19,7 @@ limitations under the License.
*/
import dis from './dispatcher';
import BaseEventIndexManager from './BaseEventIndexManager';
import BaseEventIndexManager from './indexing/BaseEventIndexManager';
/**
* Base class for classes that provide platform-specific functionality

View File

@ -20,7 +20,7 @@ import Promise from 'bluebird';
import Matrix from 'matrix-js-sdk';
import MatrixClientPeg from './MatrixClientPeg';
import EventIndexPeg from './EventIndexPeg';
import EventIndexPeg from './indexing/EventIndexPeg';
import createMatrixClient from './utils/createMatrixClient';
import Analytics from './Analytics';
import Notifier from './Notifier';

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import EventIndexPeg from "./EventIndexPeg";
import EventIndexPeg from "./indexing/EventIndexPeg";
import MatrixClientPeg from "./MatrixClientPeg";
function serverSideSearch(term, roomId = undefined) {

View File

@ -14,8 +14,8 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import PlatformPeg from "./PlatformPeg";
import MatrixClientPeg from "./MatrixClientPeg";
import PlatformPeg from "../PlatformPeg";
import MatrixClientPeg from "../MatrixClientPeg";
/**
* Event indexing class that wraps the platform specific event indexing.

View File

@ -19,9 +19,9 @@ limitations under the License.
* platform supports event indexing.
*/
import PlatformPeg from "./PlatformPeg";
import EventIndex from "./EventIndex";
import SettingsStore from './settings/SettingsStore';
import PlatformPeg from "../PlatformPeg";
import EventIndex from "../indexing/EventIndex";
import SettingsStore from '../settings/SettingsStore';
class EventIndexPeg {
constructor() {