make method private

Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
RMidhunSuresh 2021-08-19 20:43:03 +05:30
parent ed278e3e5a
commit 3af2ae3bdd

View file

@ -100,7 +100,7 @@ export class SessionContainer {
});
}
parseLoginOptions(options, homeServer) {
_parseLoginOptions(options, homeServer) {
/*
Take server response and return new object which has two props password and sso which
implements LoginMethod
@ -125,7 +125,7 @@ export class SessionContainer {
const normalizedHS = normalizeHomeserver(homeServer);
const hsApi = new HomeServerApi({homeServer: normalizedHS, request: this._platform.request});
const response = await hsApi.getLoginFlows().response();
return this.parseLoginOptions(response, normalizedHS);
return this._parseLoginOptions(response, normalizedHS);
}
async startWithLogin(loginMethod) {