Add polling and automatic redirection to /start on email confirmation (#25013)

This commit is contained in:
Claire
2023-05-16 18:03:52 +02:00
committed by GitHub
parent 2ce0b666a1
commit e60414792d
5 changed files with 94 additions and 3 deletions

View 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);
});