nodebb-plugin-spam-be-gone-fix
Version:
support both Google Recaptcha, Akismet.com, StopForumSpam.com & ProjectHoneyPot.com in Nodebb V3.x
26 lines (20 loc) • 571 B
JavaScript
;
/* global hcaptcha */
define('spam-be-gone-fix/hcaptcha', ['alerts'], (alerts) => {
const hCaptcha = {};
hCaptcha.init = () => {
const hCaptchaOK = config['spam-be-gone-fix'] && config['spam-be-gone-fix'].hCaptcha;
if (hCaptchaOK) {
$.getScript('https://hcaptcha.com/1/api.js').then(() => {
if (hcaptcha) {
hcaptcha.render('h-captcha', {
sitekey: config['spam-be-gone-fix'].hCaptcha.key,
});
}
}).fail(() => {
alerts.error('Error loading hcaptcha');
});
}
};
return hCaptcha;
});