mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-09 07:47:07 +02:00
13 lines
202 B
Ruby
13 lines
202 B
Ruby
require "fluent/version"
|
|
|
|
class MiscController < ApplicationController
|
|
def show
|
|
redirect_to misc_information_path
|
|
end
|
|
|
|
def information
|
|
@env = ENV
|
|
@plugins = Plugin.installed
|
|
end
|
|
end
|