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

This commit is contained in:
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 dis from './dispatcher';
import BaseEventIndexManager from './BaseEventIndexManager'; import BaseEventIndexManager from './indexing/BaseEventIndexManager';
/** /**
* Base class for classes that provide platform-specific functionality * 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 Matrix from 'matrix-js-sdk';
import MatrixClientPeg from './MatrixClientPeg'; import MatrixClientPeg from './MatrixClientPeg';
import EventIndexPeg from './EventIndexPeg'; import EventIndexPeg from './indexing/EventIndexPeg';
import createMatrixClient from './utils/createMatrixClient'; import createMatrixClient from './utils/createMatrixClient';
import Analytics from './Analytics'; import Analytics from './Analytics';
import Notifier from './Notifier'; import Notifier from './Notifier';

View file

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import EventIndexPeg from "./EventIndexPeg"; import EventIndexPeg from "./indexing/EventIndexPeg";
import MatrixClientPeg from "./MatrixClientPeg"; import MatrixClientPeg from "./MatrixClientPeg";
function serverSideSearch(term, roomId = undefined) { 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. limitations under the License.
*/ */
import PlatformPeg from "./PlatformPeg"; import PlatformPeg from "../PlatformPeg";
import MatrixClientPeg from "./MatrixClientPeg"; import MatrixClientPeg from "../MatrixClientPeg";
/** /**
* Event indexing class that wraps the platform specific event indexing. * Event indexing class that wraps the platform specific event indexing.

View file

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