ensl.org/app/services/api/v1/collection.rb

7 lines
147 B
Ruby
Raw Normal View History

class Api::V1::Collection
def execute_query
2020-03-23 03:24:44 +00:00
# print arel_query.to_sql
ActiveRecord::Base.connection.execute(arel_query.to_sql)
end
2014-03-31 21:33:16 +00:00
end