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-25 13:26:39 -07:00
|
|
|
import 'packs/public-path';
|
|
|
|
import axios from 'axios';
|
|
|
|
|
2023-05-28 07:38:10 -07:00
|
|
|
import ready from 'flavours/glitch/ready';
|
|
|
|
|
2023-05-25 13:26:39 -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);
|
|
|
|
});
|