REFACTOR: Inline method

This commit is contained in:
RMidhunSuresh 2022-02-01 18:01:33 +05:30
parent a91ba4370d
commit 2d4c106542

View file

@ -40,18 +40,13 @@ export class Registration {
this._data = data;
}
private async _fetchFlows(): Promise<RegistrationResponse> {
async start(): Promise<BaseRegistrationStage> {
const response = await this._hsApi.register(
this._username,
this._password,
this._initialDeviceDisplayName,
undefined,
this._inhibitLogin).response();
return response;
}
async start(): Promise<BaseRegistrationStage> {
const response = await this._fetchFlows();
this.parseStagesFromResponse(response);
return this._firstStage;
}