mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 08:04:32 +08:00
3d4faf3272
Automation (previously known as discourse-automation) is now a core plugin.
15 lines
434 B
Ruby
15 lines
434 B
Ruby
# 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
|