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-21 14:21:00 -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
|