mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
8 lines
232 B
Ruby
8 lines
232 B
Ruby
class GpsController < ActionController::Base
|
|
def index
|
|
respond_to do |format|
|
|
format.html
|
|
format.csv { send_data Report::Gps.to_csv, disposition: 'attachment', filename: "gps_#{Date.today}.csv" }
|
|
end
|
|
end
|
|
end
|