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