From 730a6b2d0aaf1bf5836e8a7d9bf9556635f8a8d3 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Fri, 30 Jul 2021 23:23:52 +0530 Subject: [PATCH] Move files to separate directory Signed-off-by: RMidhunSuresh --- src/matrix/SessionContainer.js | 2 +- src/matrix/{ => login}/LoginMethod.js | 0 src/matrix/{ => login}/PasswordLoginMethod.js | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename src/matrix/{ => login}/LoginMethod.js (100%) rename src/matrix/{ => login}/PasswordLoginMethod.js (100%) diff --git a/src/matrix/SessionContainer.js b/src/matrix/SessionContainer.js index cfc83255..4b112080 100644 --- a/src/matrix/SessionContainer.js +++ b/src/matrix/SessionContainer.js @@ -23,7 +23,7 @@ import {MediaRepository} from "./net/MediaRepository.js"; import {RequestScheduler} from "./net/RequestScheduler.js"; import {Sync, SyncStatus} from "./Sync.js"; import {Session} from "./Session.js"; -import {PasswordLoginMethod} from "./PasswordLoginMethod.js"; +import {PasswordLoginMethod} from "./login/PasswordLoginMethod.js"; export const LoadStatus = createEnum( "NotLoading", diff --git a/src/matrix/LoginMethod.js b/src/matrix/login/LoginMethod.js similarity index 100% rename from src/matrix/LoginMethod.js rename to src/matrix/login/LoginMethod.js diff --git a/src/matrix/PasswordLoginMethod.js b/src/matrix/login/PasswordLoginMethod.js similarity index 100% rename from src/matrix/PasswordLoginMethod.js rename to src/matrix/login/PasswordLoginMethod.js