mirror of
https://github.com/discourse/discourse.git
synced 2024-12-14 05:14:20 +08:00
3d4faf3272
Automation (previously known as discourse-automation) is now a core plugin.
14 lines
500 B
Ruby
14 lines
500 B
Ruby
# frozen_string_literal: true
|
|
|
|
key = "discourse_automation.triggerables.stalled_topic.durations"
|
|
ids = %w[PT1H P1D P1W P2W P1M P3M P6M P1Y]
|
|
duration_choices = ids.map { |id| { id: id, name: "#{key}.#{id}" } }
|
|
|
|
DiscourseAutomation::Triggerable.add(DiscourseAutomation::Triggers::STALLED_TOPIC) do
|
|
field :categories, component: :categories
|
|
field :tags, component: :tags
|
|
field :stalled_after, component: :choices, extra: { content: duration_choices }, required: true
|
|
|
|
placeholder :topic_url
|
|
end
|