Files
codeocean/lib/pair_programming23_study.rb
2023-08-26 00:38:58 +02:00

11 lines
219 B
Ruby

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