mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
6 lines
145 B
Ruby
6 lines
145 B
Ruby
class Api::V1::Collection
|
|
def execute_query
|
|
print arel_query.to_sql
|
|
ActiveRecord::Base.connection.execute(arel_query.to_sql)
|
|
end
|
|
end
|