From 54d34d199cf2a979cbbbea7292454475ef6c31be Mon Sep 17 00:00:00 2001 From: Alan Lamas Date: Fri, 6 Jan 2023 10:33:26 -0300 Subject: [PATCH] added string --- app/controllers/api/v1/github_webhook_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/api/v1/github_webhook_controller.rb b/app/controllers/api/v1/github_webhook_controller.rb index d137b90..82b174b 100644 --- a/app/controllers/api/v1/github_webhook_controller.rb +++ b/app/controllers/api/v1/github_webhook_controller.rb @@ -6,6 +6,7 @@ class GithubWebhookController < Api::V1::ApiController skip_before_action :authenticate_user! def filter + puts 'this pr is only for test purposes' slack_notification_service = SlackNotificationService.new(params) slack_notification_service.send_notification end