fluentd-ui/app/models/concerns/fluentd/setting/pattern.rb
Kenji Okimoto 4f2a06fd82
Add concerns to define models for fluent-plugin
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-05-24 18:08:33 +09:00

12 lines
176 B
Ruby

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