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