mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 04:56:21 +10:00
9 lines
178 B
Ruby
9 lines
178 B
Ruby
module Omnipotence
|
|
def self.omnipotent? email
|
|
(ENV['OMNIPOTENT_USERS'] || '').split(',').include? email
|
|
end
|
|
|
|
def omnipotent?
|
|
Omnipotence.omnipotent? email
|
|
end
|
|
end |