fluentd-ui/app/controllers/misc_controller.rb
2014-05-22 13:48:18 +09:00

11 lines
176 B
Ruby

class MiscController < ApplicationController
def show
redirect_to misc_information_path
end
def information
@env = ENV
@plugins = Plugin.installed
end
end