From d84e9f3c35c8e45ec46557d655b367ada22c2af1 Mon Sep 17 00:00:00 2001 From: hrj Date: Thu, 1 Apr 2021 20:07:45 +0530 Subject: [PATCH] Updated Creating your own CAPTCHA provider (markdown) --- Creating-your-own-CAPTCHA-provider.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Creating-your-own-CAPTCHA-provider.md b/Creating-your-own-CAPTCHA-provider.md index 1eda011..c52da9c 100644 --- a/Creating-your-own-CAPTCHA-provider.md +++ b/Creating-your-own-CAPTCHA-provider.md @@ -1,3 +1,5 @@ +* Currently, you need to compile and implement the Provider within a fork of the framework itself. In the future, it will be possible to compile providers separately and install them as a plugin. +* For inspiration, see the sample providers. `FilterChallenge` is simple and a good starting point. * Implement the `ChallengeProvider` interface, which contains these methods: * `getId()` - needs to return a string that will be used to identify the provider itself. @@ -6,4 +8,3 @@ * `configure()` - (optional) use the supplied configuration * `supportedParameters` - (optional) a map of parameters and their accepted values -* For inspiration, see the sample providers. `FilterChallenge` is simple and a good starting point. \ No newline at end of file