2017-11-25 11:23:47 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-09 14:36:24 -05:00
|
|
|
def is_tester(user)
|
2018-01-20 14:10:26 -08:00
|
|
|
user && %w[connorturland@gmail.com devin@callysto.com chessscholar@gmail.com solaureum@gmail.com ishanshapiro@gmail.com].include?(user.email)
|
2017-03-09 14:36:24 -05:00
|
|
|
end
|