Allow enabling pair programming study through env

This commit is contained in:
kiragrammel
2023-08-25 16:42:23 +02:00
committed by Sebastian Serth
parent 89afb599e4
commit 8ba5d5a984

View File

@ -1,8 +1,10 @@
# frozen_string_literal: true # frozen_string_literal: true
class PairProgramming23Study class PairProgramming23Study
ENABLE = ENV.fetch('PAIR_PROGRAMMING_23_STUDY', nil) == 'true'
def self.participate? def self.participate?
# TODO: Decide which users are in the study # TODO: Decide which users are in the study
false ENABLE
end end
end end