fluentd-ui/app/models/concerns/fluentd/setting/label.rb
Kenji Okimoto 6ac186edb5
Add Fluentd::Setting::Label
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-09-13 11:21:08 +09:00

12 lines
172 B
Ruby

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