You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class AdminConstraint
- def matches?(request)
- if Rails.env.development?
- true
- else
- 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
- end
|