upd: handle email signups properly with approval enabled
This commit is contained in:
parent
3f0cc256dc
commit
32fc540df4
3 changed files with 15 additions and 4 deletions
|
|
@ -45,6 +45,13 @@ function submit() {
|
|||
os.api('signup-pending', {
|
||||
code: props.code,
|
||||
}).then(res => {
|
||||
if (res.pendingApproval) {
|
||||
return os.alert({
|
||||
type: 'success',
|
||||
title: i18n.ts._signup.almostThere,
|
||||
text: i18n.ts._signup.approvalPending,
|
||||
});
|
||||
}
|
||||
return login(res.i, '/');
|
||||
}).catch(() => {
|
||||
submitting = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue