[Glitch] Add polling and automatic redirection to /start on email confirmation
Port e60414792d to glitch-soc
This commit is contained in:
15
app/javascript/flavours/glitch/packs/sign_up.js
Normal file
15
app/javascript/flavours/glitch/packs/sign_up.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
});
|
||||
Reference in New Issue
Block a user