mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 06:13:42 +08:00
3d4faf3272
Automation (previously known as discourse-automation) is now a core plugin.
12 lines
268 B
Ruby
12 lines
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAutomation
|
|
class TriggerSerializer < ApplicationSerializer
|
|
attributes :id, :name, :metadata
|
|
|
|
def metadata
|
|
((options[:trigger_metadata] || {}).stringify_keys).merge(object.metadata || {})
|
|
end
|
|
end
|
|
end
|