mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
11 lines
191 B
Ruby
11 lines
191 B
Ruby
class WebhooksController < ApplicationController
|
|
|
|
protect_from_forgery :except => :create
|
|
|
|
def create
|
|
# data_json = JSON.parse request.body.read
|
|
|
|
render nothing: true
|
|
end
|
|
end
|