Module: ActiveEnquo::ActiveRecord::RelationExtension

Extended by:
ActiveSupport::Concern
Includes:
QueryFilterMangler
Defined in:
lib/active_enquo.rb

Instance Method Summary collapse

Instance Method Details

#exists?(*a) ⇒ Boolean

Returns:

  • (Boolean)


242
243
244
245
# File 'lib/active_enquo.rb', line 242

def exists?(*a)
	mangle_query_filter(a)
	super
end

#where(*a) ⇒ Object



237
238
239
240
# File 'lib/active_enquo.rb', line 237

def where(*a)
	mangle_query_filter(a)
	super
end