cryptcheck-rails/app/controllers/statistics_controller.rb

14 lines
310 B
Ruby
Raw Normal View History

2022-03-26 16:48:03 +00:00
class StatisticsController < ApplicationController
TODAY = Date.today
2022-03-26 16:48:03 +00:00
def show
service = params.fetch :id
2022-03-26 16:48:03 +00:00
respond_to do |format|
format.json do
json = Stat.find_by(name: "grades_for_#{service}", date: TODAY).dataset
2022-03-26 16:48:03 +00:00
render json: json, status: :ok
end
end
end
end