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