[Glitch] Add polling and automatic redirection to /start on email confirmation

Port e60414792d to glitch-soc
This commit is contained in:
Claire
2023-05-25 22:26:39 +02:00
parent f959f6cdbb
commit ba73f0ea3a
6 changed files with 19 additions and 3 deletions

View File

@ -16,4 +16,5 @@ pack:
modal: public.js
public: public.js
settings: settings.js
sign_up:
share:

View 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);
});

View File

@ -20,6 +20,7 @@ pack:
modal:
public: packs/public.jsx
settings: packs/settings.js
sign_up: packs/sign_up.js
share: packs/share.jsx
# (OPTIONAL) The directory which contains localization files for

View File

@ -20,6 +20,7 @@ pack:
modal:
public: public.jsx
settings: public.jsx
sign_up: sign_up.js
share: share.jsx
# (OPTIONAL) The directory which contains localization files for