This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/controllers/serverchecker_controller.rb
2013-06-24 13:29:39 +02:00

10 lines
294 B
Ruby

class ServercheckerController < ApplicationController
def show
if mc_running?
send_file "app/assets/images/on.png", :type => "image/png", :disposition => "inline"
else
send_file "app/assets/images/off.png", :type => "image/png", :disposition => "inline"
end
end
end