mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 20:43:39 +08:00
c13f64d35b
* FEATURE: Add Filter for Webhook Events by Status * Fixing multiple issues * Lint * Fixing multiple issues * Change the range of the status for webhook events
8 lines
164 B
Ruby
8 lines
164 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:web_hook_event) do
|
|
web_hook { Fabricate(:web_hook) }
|
|
payload { { some_key: "some_value" }.to_json }
|
|
status 200
|
|
end
|