FEATURE: Merge discourse-automation (#26432)

Automation (previously known as discourse-automation) is now a core plugin.
This commit is contained in:
Osama Sayegh
2024-04-03 18:20:43 +03:00
committed by GitHub
parent 2190c9b957
commit 3d4faf3272
314 changed files with 21182 additions and 10 deletions

View File

@ -0,0 +1,14 @@
# frozen_string_literal: true
module DiscourseAutomation
class AutomationsController < ApplicationController
requires_plugin DiscourseAutomation::PLUGIN_NAME
before_action :ensure_admin
def trigger
automation = DiscourseAutomation::Automation.find(params[:id])
automation.trigger_in_background!(params.merge(kind: DiscourseAutomation::Triggers::API_CALL))
render json: success_json
end
end
end