forked from mystiq/hydrogen-web
REFACTOR: Inline method
This commit is contained in:
parent
a91ba4370d
commit
2d4c106542
1 changed files with 1 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue