mirror of
https://github.com/exchanges-lab/view.git
synced 2026-08-05 05:36:06 +08:00
9bc9222be5
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
456 B
JavaScript
15 lines
456 B
JavaScript
window.API_CONFIG = { baseUrl: 'https://api-view.cathiefish.org' };
|
|
|
|
const AUTH_CONFIG = {
|
|
clientId: '136939086552-bt28icv34nucmjna8hfndr6bopr5qcp4.apps.googleusercontent.com',
|
|
onSuccess: (user) => {
|
|
console.log('Authentication successful:', user.email);
|
|
},
|
|
onError: (error) => {
|
|
console.error('Authentication error:', error);
|
|
}
|
|
};
|
|
|
|
window.AUTH_CONFIG = AUTH_CONFIG;
|
|
window.ALLOWED_EMAILS = ['xiannvweideta@gmail.com'];
|