mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
8 lines
No EOL
226 B
Ruby
8 lines
No EOL
226 B
Ruby
post '/stripe_webhook' do
|
|
event = JSON.parse request.body.read
|
|
if event['type'] == 'customer.created'
|
|
username = event['data']['object']['description']
|
|
email = event['data']['object']['email']
|
|
end
|
|
'ok'
|
|
end |