You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
354 B
16 lines
354 B
2 years ago
|
import 'packs/public-path';
|
||
|
import ready from 'flavours/glitch/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);
|
||
|
});
|