1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-18 16:43:51 -05:00

17 lines
355 B
JavaScript
Raw Normal View History

import 'packs/public-path';
import axios from 'axios';
import ready from 'flavours/glitch/ready';
ready(() => {
setInterval(() => {
axios.get('/api/v1/emails/check_confirmation').then((response) => {
if (response.data) {
window.location = '/start';
}
}).catch(error => {
console.error(error);
});
}, 5000);
});