mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:29:47 +08:00
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
|