This commit is contained in:
David Baker 2018-09-05 20:34:03 +01:00
parent 27fa21e403
commit eced58701d

View file

@ -29,6 +29,10 @@ import { _t } from './languageHandler';
/** /**
* Starts either the ILAG or full registration flow, depending * Starts either the ILAG or full registration flow, depending
* on what the HS supports * on what the HS supports
*
* @param {object} options
* @param {bool} options.go_home_on_cancel If true, goes to
* the hame page if the user cancels the action
*/ */
export async function startAnyRegistrationFlow(options) { export async function startAnyRegistrationFlow(options) {
if (options === undefined) options = {}; if (options === undefined) options = {};
@ -70,7 +74,7 @@ export async function startAnyRegistrationFlow(options) {
} else if (options.go_home_on_cancel) { } else if (options.go_home_on_cancel) {
dis.dispatch({action: 'view_home_page'}); dis.dispatch({action: 'view_home_page'});
} }
} },
}); });
} }
} }