diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-10 18:16:39 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-10 18:16:39 +0200 |
commit | 68eed8c61fd4dd5d7f5ed119848ccb4694140be5 (patch) | |
tree | 3bcc2f7af76a2dc777fb1a8f5e42e8e60b7822bf /app/controllers | |
parent | 87b618ab02d5265e47bd3455a41c5c31d77905a5 (diff) |
Stop logging incoming Atom
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/subscriptions_controller.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/controllers/api/subscriptions_controller.rb b/app/controllers/api/subscriptions_controller.rb index b51593721..c3aeee94d 100644 --- a/app/controllers/api/subscriptions_controller.rb +++ b/app/controllers/api/subscriptions_controller.rb @@ -15,8 +15,6 @@ class Api::SubscriptionsController < ApiController body = request.body.read subscription = @account.subscription(api_subscription_url(@account.id)) - Rails.logger.debug body - if subscription.verify(body, request.headers['HTTP_X_HUB_SIGNATURE']) ProcessFeedService.new.call(body, @account) head 201 |