27 lines
782 B
JavaScript
27 lines
782 B
JavaScript
/**
|
|
* FurryPlace Captcha Configuration
|
|
* This file is automatically loaded before plugins to configure captcha providers
|
|
*
|
|
* The login-captcha.js plugin will show a single captcha in the login modal
|
|
* that unlocks all login methods (username/password, Google OAuth, etc.)
|
|
*/
|
|
|
|
window.FURRYPLACE_CAPTCHA_CONFIG = {
|
|
// Login Modal - hCaptcha (covers login, register, and Google OAuth)
|
|
login: {
|
|
enabled: true,
|
|
siteKey: '52562422-3e32-4230-9f70-b496c4acea66',
|
|
theme: 'dark',
|
|
size: 'normal'
|
|
},
|
|
|
|
// Paint - Turnstile (optional, for painting verification)
|
|
paint: {
|
|
enabled: false, // Set to true to require captcha when painting
|
|
siteKey: '0x4AAAAAAB44tMjFejnRfoKl',
|
|
theme: 'auto'
|
|
}
|
|
};
|
|
|
|
console.log('[FurryPlace] Captcha configuration loaded');
|