1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-03 17:28:30 +09:00
whippy-edition/app/helpers/admin/settings_helper.rb
2023-05-16 23:27:35 +02:00

8 lines
172 B
Ruby

# frozen_string_literal: true
module Admin::SettingsHelper
def captcha_available?
ENV['HCAPTCHA_SECRET_KEY'].present? && ENV['HCAPTCHA_SITE_KEY'].present?
end
end