You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
310 B
8 lines
310 B
class AdminConstraint
|
|
def matches?(request)
|
|
laboratory = Laboratory.first
|
|
return false unless request.session[:"#{laboratory.try(:identifier).split('.').first}_user_id"]
|
|
user = User.find request.session[:"#{laboratory.try(:identifier).split('.').first}_user_id"]
|
|
user && user.admin?
|
|
end
|
|
end |