Module: AdminAccess

Defined in:
lib/adminaccess.rb

Class Method Summary collapse

Class Method Details

.auth(myAdmin, admin) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/adminaccess.rb', line 3

def self.auth(myAdmin, admin)
  if myAdmin==admin     
      return true    
  else
    return false
  end
end