mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-16 20:03:24 +00:00
7d7db8977b
Port d27216dc46
to glitch-soc
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
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);
|
|
});
|