{ :conditions => ["#{"(visibility = #{Shared::PUBLIC}) || " if include_non_employee_public} (visibility IN (#{employee_privacy}) AND user_id IN (#{users}))"] }
there is my condition for my named scope. now i've tried both || and OR in the named scope, but the console always shows AND.
any ideas?