fluentd-ui/app/models/concerns/fluentd/setting/label.rb
Kenji Okimoto 6eae27825a
Set label properly
Because the label is not an argument.

Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-10-10 12:27:37 +09:00

12 lines
169 B
Ruby

class Fluentd
module Setting
module Label
extend ActiveSupport::Concern
included do
config_param(:label, :string)
end
end
end
end