Add polling and automatic redirection to /start
on email confirmation (#25013)
This commit is contained in:
parent
2ce0b666a1
commit
e60414792d
5 changed files with 94 additions and 3 deletions
15
app/javascript/packs/sign_up.js
Normal file
15
app/javascript/packs/sign_up.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import './public-path';
|
||||
import ready from '../mastodon/ready';
|
||||
import axios from 'axios';
|
||||
|
||||
ready(() => {
|
||||
setInterval(() => {
|
||||
axios.get('/api/v1/emails/check_confirmation').then((response) => {
|
||||
if (response.data) {
|
||||
window.location = '/start';
|
||||
}
|
||||
}).catch(error => {
|
||||
console.error(error);
|
||||
});
|
||||
}, 5000);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue