9 lines
152 B
Ruby
9 lines
152 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PairProgramming23Study
|
|
def self.participate?
|
|
# TODO: Decide which users are in the study
|
|
false
|
|
end
|
|
end
|