mirror of
https://github.com/openSUSE/osem.git
synced 2026-01-06 04:57:48 -05:00
11 lines
244 B
Ruby
11 lines
244 B
Ruby
require 'feature'
|
|
|
|
repo = Feature::Repository::SimpleRepository.new
|
|
|
|
# configure features here
|
|
unless(ENV['RECAPTCHA_SITE_KEY'].blank? || ENV['RECAPTCHA_SECRET_KEY'].blank?)
|
|
repo.add_active_feature :recaptcha
|
|
end
|
|
|
|
Feature.set_repository repo
|