0
0
Fork 0

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);
});