forked from External/greenlight
12 lines
189 B
Ruby
12 lines
189 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Load terms and conditions.
|
|
|
|
terms = "#{Rails.root}/config/terms.txt"
|
|
|
|
Rails.configuration.terms = if File.exist?(terms)
|
|
File.read(terms)
|
|
else
|
|
false
|
|
end
|