mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-11 00:37:06 +02:00
11 lines
176 B
Ruby
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
|