You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
304 B

module Api
module V1
module Admin
class TrainingWatchController < BaseController
def run
results = TrainingWatch::Checker.new.run!
render json: { message: "Prüfung abgeschlossen", new_hits: results.size, results: results }
end
end
end
end
end