sqm-dashboards/app/controllers/gps_controller.rb
2023-02-28 17:50:21 -08:00

8 lines
170 B
Ruby

class GpsController < ActionController::Base
def index
respond_to do |format|
format.html
format.csv { send_data Report::Gps.to_csv }
end
end
end