This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-05-16 18:03:52 +02:00
|
|
|
import './public-path';
|
|
|
|
import axios from 'axios';
|
|
|
|
|
2023-05-23 17:15:17 +02:00
|
|
|
import ready from '../mastodon/ready';
|
|
|
|
|
2023-05-16 18:03:52 +02:00
|
|
|
ready(() => {
|
|
|
|
setInterval(() => {
|
|
|
|
axios.get('/api/v1/emails/check_confirmation').then((response) => {
|
|
|
|
if (response.data) {
|
|
|
|
window.location = '/start';
|
|
|
|
}
|
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|
|
|
|
}, 5000);
|
|
|
|
});
|