Skip to content

Instantly share code, notes, and snippets.

@julianrubisch
Created September 20, 2022 13:27
Show Gist options
  • Save julianrubisch/37f31f52fee291449bae0231bea234d9 to your computer and use it in GitHub Desktop.
Save julianrubisch/37f31f52fee291449bae0231bea234d9 to your computer and use it in GitHub Desktop.
post "events", to: "events#create", constraints: ->(req) do
req.user_agent == "SavvyCal Webhooks (https://savvycal.com)" &&
req.params["type"] == "event.created"
end
post "events", to: "events#update", constraints: ->(req) do
req.user_agent == "SavvyCal Webhooks (https://savvycal.com)" &&
["event.rescheduled", "event.canceled"].include?(req.params["type"])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment