recaptcha v2.1.1 Release Notes

Release Date: 2016-10-08 // over 7 years ago
  • ๐Ÿ”ง Configuration can now accept any of the following:

    • Standard variables:

      config :recaptcha, public_key: "some public key string", secret: "some private string"

    • Environment variable at compile time:

      config :recaptcha, public_key: System.get_env("RECAPTCHA_PUBLIC_KEY"), secret: System.get_env("RECAPTCHA_PRIVATE_KEY")

    • Environment variable at runtime:

      config :recaptcha, public_key: {:system, "RECPATCHA_PUBLIC_KEY"}, secret: {:system, "RECAPTCHA_PRIVATE_KEY"}

    ๐Ÿฑ Thanks to @kennyballou for the addition ๐Ÿ‘